mirror of
https://github.com/MiSTer-devel/MultiComp_MiSTer.git
synced 2026-04-19 03:04:38 +00:00
Update MicrocomputerZ80CPM.vhd
Fix N_RESET (upper case)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user