summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/apricot/keyboard
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/apricot/keyboard')
-rw-r--r--src/devices/bus/apricot/keyboard/hle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/apricot/keyboard/hle.cpp b/src/devices/bus/apricot/keyboard/hle.cpp
index 8fbbb796ef1..08ba47cc4f0 100644
--- a/src/devices/bus/apricot/keyboard/hle.cpp
+++ b/src/devices/bus/apricot/keyboard/hle.cpp
@@ -266,7 +266,7 @@ void apricot_keyboard_hle_device::received_byte(uint8_t byte)
if (m_rtc_index >= 0)
{
m_rtc->address_w(m_rtc_index--);
- m_rtc->data_w(machine().driver_data()->generic_space(), 0, byte);
+ m_rtc->data_w(machine().dummy_space(), 0, byte);
}
}
else
@@ -290,7 +290,7 @@ void apricot_keyboard_hle_device::received_byte(uint8_t byte)
for (int i = 12; i >= 0; i--)
{
m_rtc->address_w(i);
- transmit_byte(0xf0 | m_rtc->data_r(machine().driver_data()->generic_space(), 0));
+ transmit_byte(0xf0 | m_rtc->data_r(machine().dummy_space(), 0));
}
break;