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