ILOpCodeLog.cs 322 B

1234567891011121314151617
  1. namespace ChocolArm64.Translation
  2. {
  3. struct ILOpCodeLog : IILEmit
  4. {
  5. private string _text;
  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. }