aloha
This commit is contained in:
commit
b7e1d9930d
230 changed files with 17548 additions and 0 deletions
17
Ryujinx/Cpu/Translation/AILOpCodeLog.cs
Normal file
17
Ryujinx/Cpu/Translation/AILOpCodeLog.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue