ILOpCodeLog.cs 326 B

1234567891011121314151617
  1. namespace ChocolArm64.Translation
  2. {
  3. struct ILOpCodeLog : IILEmit
  4. {
  5. public string Text { get; }
  6. public ILOpCodeLog(string text)
  7. {
  8. Text = text;
  9. }
  10. public void Emit(ILMethodBuilder context)
  11. {
  12. context.Generator.EmitWriteLine(Text);
  13. }
  14. }
  15. }