public void ConnectTo(Button resetButton, ULA ula, ROM rom, DualAccessMemoryMappedChip ram16K, MemoryMappedChip ram32K) { this.resetButton = resetButton; this.ula = ula; this.rom = rom; this.ram16K = ram16K; this.ram32K = ram32K; }
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; }