Ryujinx/ChocolArm64/Translation/ILOpCodeLog.cs
2019-02-25 09:27:10 -03:00

17 lines
No EOL
326 B
C#

namespace ChocolArm64.Translation
{
struct ILOpCodeLog : IILEmit
{
public string Text { get; }
public ILOpCodeLog(string text)
{
Text = text;
}
public void Emit(ILMethodBuilder context)
{
context.Generator.EmitWriteLine(Text);
}
}
}