Esempio n. 1
0
 public AlphaRewriter(AlphaArchitecture arch, EndianImageReader rdr, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = arch;
     this.rdr    = rdr;
     this.binder = binder;
     this.host   = host;
     this.dasm   = new AlphaDisassembler(this.arch, rdr).GetEnumerator();
 }
Esempio n. 2
0
 public AlphaProcessorState(AlphaProcessorState that) : base(that)
 {
     this.arch = that.arch;
 }
Esempio n. 3
0
 public AlphaProcessorState(AlphaArchitecture arch)
 {
     this.arch = arch;
 }
Esempio n. 4
0
 public AlphaDisassembler(AlphaArchitecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
 }