Inheritance: Reko.Core.ProcessorArchitecture
Beispiel #1
0
 public Z80ProcessorState(Z80ProcessorState state)
     : base(state)
 {
     this.arch = state.arch;
     this.registerFile = (ushort[])state.registerFile.Clone();
     this.isValid = (bool[])state.isValid.Clone();
 }
Beispiel #2
0
 public Z80Rewriter(Z80ProcessorArchitecture arch, EndianImageReader rdr, ProcessorState state, Frame frame, IRewriterHost host)
 {
     this.arch  = arch;
     this.frame = frame;
     this.host  = host;
     this.dasm  = new Z80Disassembler(rdr).GetEnumerator();
 }
Beispiel #3
0
 public Z80ProcessorState(Z80ProcessorState state)
     : base(state)
 {
     this.arch         = state.arch;
     this.registerFile = (ushort[])state.registerFile.Clone();
     this.isValid      = (bool[])state.isValid.Clone();
 }
Beispiel #4
0
 public Z80Rewriter(Z80ProcessorArchitecture arch, EndianImageReader rdr, ProcessorState state, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = arch;
     this.binder = binder;
     this.host   = host;
     this.dasm   = new Z80Disassembler(rdr).GetEnumerator();
 }
Beispiel #5
0
 public Z80ProcessorState(Z80ProcessorArchitecture arch)
 {
     this.arch = arch;
     this.registerFile = new ushort[RegisterFileItems];
     this.isValid = new bool[RegisterFileItems];
 }
Beispiel #6
0
 public Z80ProcessorState(Z80ProcessorArchitecture arch)
 {
     this.arch         = arch;
     this.registerFile = new ushort[RegisterFileItems];
     this.isValid      = new bool[RegisterFileItems];
 }