summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hd44780.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hd44780.cpp')
-rw-r--r--src/devices/video/hd44780.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/hd44780.cpp b/src/devices/video/hd44780.cpp
index 41c05f3e5e4..5b40d9d14a9 100644
--- a/src/devices/video/hd44780.cpp
+++ b/src/devices/video/hd44780.cpp
@@ -487,7 +487,7 @@ READ8_MEMBER(hd44780_device::control_read)
{
if (m_data_len == 4)
{
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
update_nibble(0, 1);
if (m_nibble)
@@ -549,7 +549,7 @@ READ8_MEMBER(hd44780_device::data_read)
if (m_data_len == 4)
{
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
update_nibble(1, 1);
if (m_nibble)
@@ -558,7 +558,7 @@ READ8_MEMBER(hd44780_device::data_read)
data = (data << 4) & 0xf0;
}
- if (!space.debugger_access())
+ if (!machine().side_effect_disabled())
{
update_ac(m_direction);
set_busy_flag(41);