h8_watchdog: Blah blah blah, side effects blah (nw)

This commit is contained in:
AJR 2018-12-03 10:16:11 -05:00
parent 3b0e83caad
commit e9a969f154

View File

@ -67,9 +67,11 @@ void h8_watchdog_device::tcnt_update(uint64_t cur_time)
READ16_MEMBER(h8_watchdog_device::wd_r)
{
if (!machine().side_effects_disabled())
{
tcnt_update();
logerror("read\n");
}
return 0;
}
@ -99,6 +101,7 @@ WRITE16_MEMBER(h8_watchdog_device::wd_w)
READ16_MEMBER(h8_watchdog_device::rst_r)
{
if (!machine().side_effects_disabled())
logerror("rst_r\n");
return 0;
}