mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-30 23:07:44 +02:00
17 lines
No EOL
322 B
C#
17 lines
No EOL
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);
|
|
}
|
|
}
|
|
} |