Ejemplo n.º 1
0
 public Computer(ClockCycle clockCycle, ROM rom, CPU16Bit.CPUAnalyzer analyzer)
 {
     CurrentComputer = this;
     this.rom = rom;
     cpu = new CPU16Bit(analyzer);
     memory = new Memory(16);
     clockCycle.Start();
 }
Ejemplo n.º 2
0
 public Computer(ROM instructions)
     : this(new ClockCycle(Computer.ClockCycled, 1), instructions,null)
 {
 }