summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/apricot/keyboard
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2016-11-03 17:53:30 +0000
committer smf- <smf-@users.noreply.github.com>2016-11-03 19:21:22 +0000
commit87490d481514100d5cb7a8f4773a7bb415ce6fe5 (patch)
tree4938a4d2302fe24f25b154ddef9f89041a0e694e /src/devices/bus/apricot/keyboard
parente125186e15dad8729c59b9073566ab191befc8a8 (diff)
replaced machine().driver_data()->generic_space() with machine().dummy_space() (nw)
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;