From 49f42e4b8328b0ed233cc2e7d566ed230ddddefa Mon Sep 17 00:00:00 2001 From: honupata <13951468+honupata@users.noreply.github.com> Date: Thu, 5 Jul 2018 10:16:31 -0400 Subject: [PATCH] Update MicrocomputerZ80CPM.vhd Fix N_RESET (upper case) --- MicrocomputerZ80CPM.vhd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MicrocomputerZ80CPM.vhd b/MicrocomputerZ80CPM.vhd index 6934982..a9be4a2 100644 --- a/MicrocomputerZ80CPM.vhd +++ b/MicrocomputerZ80CPM.vhd @@ -110,8 +110,8 @@ architecture struct of MicrocomputerZ80CPM is begin --CPM -- Disable ROM if out 38. Re-enable when (asynchronous) reset pressed - process (n_ioWR, n_reset) begin - if (n_reset = '0') then + process (n_ioWR, N_RESET) begin + if (N_RESET = '0') then n_RomActive <= '0'; elsif (rising_edge(n_ioWR)) then if cpuAddress(7 downto 0) = "00111000" then -- $38