コード例 #1
0
 public Msp430Disassembler(Msp430Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
コード例 #2
0
ファイル: Msp430Rewriter.cs プロジェクト: erenes/reko
 public Msp430Rewriter(Msp430Architecture arch, EndianImageReader rdr, ProcessorState state, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = arch;
     this.state  = state;
     this.binder = binder;
     this.host   = host;
     this.rdr    = rdr;
     this.dasm   = new Msp430Disassembler(arch, rdr).GetEnumerator();
 }
コード例 #3
0
ファイル: Msp430State.cs プロジェクト: xxtxiaofeng/reko
 public Msp430State(Msp430State that) : base(that)
 {
     this.arch = that.arch;
 }
コード例 #4
0
ファイル: Msp430State.cs プロジェクト: xxtxiaofeng/reko
 public Msp430State(Msp430Architecture arch)
 {
     this.arch  = arch;
     this.regs  = new int[16];
     this.valid = new bool[16];
 }
コード例 #5
0
 public Msp430State(Msp430State that) : base(that)
 {
     this.arch  = that.arch;
     this.regs  = that.regs.ToArray();
     this.valid = that.valid.ToArray();
 }
コード例 #6
0
 public Msp430Disassembler(Msp430Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
 }