mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 05:38:32 +00:00
17 lines
322 B
C#
17 lines
322 B
C#
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);
|
|
}
|
|
}
|
|
} |