mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
r65c19: Fix BAR masking logic (nw)
This commit is contained in:
parent
12684d33ee
commit
f852af6cb8
@ -66,7 +66,7 @@ bar_amr
|
|||||||
TMP2 = read(TMP);
|
TMP2 = read(TMP);
|
||||||
TMP = read_pc_noinc();
|
TMP = read_pc_noinc();
|
||||||
read_pc();
|
read_pc();
|
||||||
TMP2 &= ~TMP;
|
TMP2 = ~TMP2 & TMP;
|
||||||
TMP = read_pc();
|
TMP = read_pc();
|
||||||
if(TMP2 != 0) {
|
if(TMP2 != 0) {
|
||||||
read_pc_noinc();
|
read_pc_noinc();
|
||||||
|
Loading…
Reference in New Issue
Block a user