public void ConnectTo(Clock clock, Z80CPU cpu, DualAccessMemoryMappedChip ram16K, Keyboard keyboard, Screen screen, Speaker speaker) { this.clock = clock; this.cpu = cpu; this.ram16K = ram16K; this.keyboard = keyboard; this.screen = screen; this.speaker = speaker; }
public void ConnectTo(ULA ula, Screen screen, TapeRecorder tapeRecorder) { this.ula = ula; this.screen = screen; this.tapeRecorder = tapeRecorder; }