17 lines
No EOL
326 B
C#
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);
|
|
}
|
|
}
|
|
} |