1
0
Fork 0
mirror of https://github.com/Ryujinx/ChocolArm64.git synced 2025-01-12 03:05:40 +00:00
ChocolArm64/Translation/AILOpCodeLog.cs

17 lines
322 B
C#
Raw Normal View History

namespace ChocolArm64.Translation
{
struct AILOpCodeLog : IAILEmit
{
private string Text;
public AILOpCodeLog(string Text)
{
this.Text = Text;
}
public void Emit(AILEmitter Context)
{
Context.Generator.EmitWriteLine(Text);
}
}
}