mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
wd_fdc: interrupts take priority
This commit is contained in:
parent
eb13a4deda
commit
437ac7c12b
@ -1035,8 +1035,8 @@ void wd_fdc_t::cmd_w(UINT8 val)
|
||||
intrq_cb(intrq);
|
||||
}
|
||||
|
||||
// No more than one write in flight
|
||||
if(cmd_buffer != -1)
|
||||
// No more than one write in flight, but interrupts take priority
|
||||
if(cmd_buffer != -1 && ((val & 0xf0) != 0xd0))
|
||||
return;
|
||||
|
||||
cmd_buffer = val;
|
||||
|
Loading…
Reference in New Issue
Block a user