mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
heathzenith/mms77316_fdc.cpp: Suppress side effects of data reads for debugger accesses. (#12627)
This commit is contained in:
parent
1aa8abc3e5
commit
6435d1b7b5
@ -151,7 +151,10 @@ u8 mms77316_fdc_device::data_r()
|
||||
{
|
||||
LOGBURST("%s: burst_mode setting wait state\n", FUNCNAME);
|
||||
|
||||
m_wait_cb(ASSERT_LINE);
|
||||
if (!machine().side_effects_disabled())
|
||||
{
|
||||
m_wait_cb(ASSERT_LINE);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user