mirror of
https://github.com/holub/mame
synced 2025-05-29 09:03:08 +03:00
wd_fdc: Side compare (bit 2) is 0 for disable side compare (no whatsnew)
This makes Specialist MX to boot properly
This commit is contained in:
parent
92bff629c8
commit
7f3a250f85
@ -361,7 +361,7 @@ bool wd_fdc_t::sector_matches() const
|
||||
|
||||
if(cur_live.idbuf[0] != track || cur_live.idbuf[2] != sector)
|
||||
return false;
|
||||
if(!side_compare || (command & 2))
|
||||
if(!side_compare || ((command & 2)==0))
|
||||
return true;
|
||||
if(command & 8)
|
||||
return cur_live.idbuf[1] & 1;
|
||||
|
Loading…
Reference in New Issue
Block a user