diff options
Diffstat (limited to 'src/devices/video/hd44780.cpp')
-rw-r--r-- | src/devices/video/hd44780.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/hd44780.cpp b/src/devices/video/hd44780.cpp index 65aef6fc39a..122522a9e0d 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().debugger_access()) 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().debugger_access()) 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().debugger_access()) { update_ac(m_direction); set_busy_flag(41); |