using System;
using System.IO;
using Mono.Cecil.Cil;
using CPU = Indy.IL2CPU.Assembler.X86;
namespace Indy.IL2CPU.IL.X86 {
[OpCode(Code.Newobj)]
public class Newobj: Op {
///
/// This overload takes the label name of the ctor
///
///
public void Assemble(string aCtor) {
new CPU.JumpAlways(aCtor);
}
public override void Assemble(Instruction aInstruction) {
//TODO: Call the other assemble
throw new NotImplementedException("This file has been autogenerated and not been changed afterwards!");
}
}
}