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; }
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; }