heathzenith/mms77316_fdc.cpp: Suppress side effects of data reads for debugger accesses. (#12627)

This commit is contained in:
Mark Garlanger 2024-07-29 20:34:38 -05:00 committed by GitHub
parent 1aa8abc3e5
commit 6435d1b7b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
{