mirror of
https://github.com/holub/mame
synced 2025-05-04 05:23:22 +03:00
rx01_cpu: Fix AND logic (nw)
This commit is contained in:
parent
a278f24c8f
commit
a7d70fb10e
@ -186,7 +186,7 @@ bool rx01_cpu_device::test_condition()
|
||||
|
||||
case 034:
|
||||
// Track zero of selected drive on head
|
||||
return (m_flags & FF_IOB0) && (m_flags && FF_IOB3) && drv_sel_trk0();
|
||||
return (m_flags & FF_IOB0) && (m_flags & FF_IOB3) && drv_sel_trk0();
|
||||
|
||||
case 054:
|
||||
// Separated data equals shift register MSB
|
||||
|
Loading…
Reference in New Issue
Block a user