public Cr16cDisassembler(Cr16Architecture arch, EndianImageReader rdr) { this.arch = arch; this.rdr = rdr; this.ops = new List <MachineOperand>(); this.addr = rdr.Address; }
public Cr16Rewriter(Cr16Architecture 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 Cr16cDisassembler(arch, rdr).GetEnumerator(); this.instr = null !; this.m = null !; }
public Cr16State(Cr16Architecture arch) { this.arch = arch; }