Ejemplo n.º 1
0
 public Arm7Processor(Memory memory)
 {
     this.memory           = memory;
     this.memory.Processor = this;
     this.armCore          = new FastArmCore(this, this.memory);
     this.thumbCore        = new ThumbCore(this, this.memory);
     this.breakpoints      = new Dictionary <uint, bool>();
     this.breakpointHit    = false;
 }
Ejemplo n.º 2
0
 public Arm7Processor(Memory memory)
 {
     this.memory = memory;
     this.memory.Processor = this;
     this.armCore = new FastArmCore(this, this.memory);
     this.thumbCore = new ThumbCore(this, this.memory);
     this.breakpoints = new Dictionary<uint, bool>();
     this.breakpointHit = false;
 }