AILOpCodeLog.cs 322 B

1234567891011121314151617
  1. namespace ChocolArm64.Translation
  2. {
  3. struct AILOpCodeLog : IAILEmit
  4. {
  5. private string Text;
  6. public AILOpCodeLog(string Text)
  7. {
  8. this.Text = Text;
  9. }
  10. public void Emit(AILEmitter Context)
  11. {
  12. Context.Generator.EmitWriteLine(Text);
  13. }
  14. }
  15. }