From 87490d481514100d5cb7a8f4773a7bb415ce6fe5 Mon Sep 17 00:00:00 2001 From: smf- Date: Thu, 3 Nov 2016 17:53:30 +0000 Subject: replaced machine().driver_data()->generic_space() with machine().dummy_space() (nw) --- src/devices/bus/apricot/keyboard/hle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/devices/bus/apricot/keyboard') 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; -- cgit v1.2.3-70-g09d2