public XCore200Disassembler(XCore200Architecture arch, EndianImageReader rdr) { this.arch = arch; this.rdr = rdr; this.ops = new List <MachineOperand>(); this.addr = null !; }
public XCore200Rewriter(XCore200Architecture arch, EndianImageReader rdr, ProcessorState state, IStorageBinder binder, IRewriterHost host) { this.arch = arch; this.rdr = rdr; this.state = state; this.binder = binder; this.host = host; this.dasm = new XCore200Disassembler(arch, rdr).GetEnumerator(); }
public XCore200State(XCore200Architecture arch) { this.arch = arch; }