public MilStd1750Disassembler(MilStd1750Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = rdr.Address;
 }
Example #2
0
 public MilStd1750State(MilStd1750Architecture arch, Dictionary <RegisterStorage, Constant>?regValues = null)
 {
     this.arch      = arch;
     this.regValues = regValues ?? new Dictionary <RegisterStorage, Constant>();
 }