mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2025-02-10 22:30:50 +00:00
Z80: fix bug when NOP mode disbled
Change-Id: I1853967582bf241a74f8fd8687deda2d5555b153
This commit is contained in:
parent
2c4ad8363b
commit
d479dedf4b
@ -592,7 +592,7 @@ begin
|
||||
mon_iorq_n <= '1';
|
||||
end if;
|
||||
-- Read strobe
|
||||
if state = nop_t1 or state = rd_t1 or state = rd_wa or state = rd_t2 then
|
||||
if (state = nop_t1 and mode = '0') or state = rd_t1 or state = rd_wa or state = rd_t2 then
|
||||
mon_rd_n <= '0';
|
||||
else
|
||||
mon_rd_n <= '1';
|
||||
|
Loading…
x
Reference in New Issue
Block a user