summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/apollo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/apollo.c')
-rw-r--r--src/mess/drivers/apollo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/drivers/apollo.c b/src/mess/drivers/apollo.c
index 97f6b52526c..343002d9287 100644
--- a/src/mess/drivers/apollo.c
+++ b/src/mess/drivers/apollo.c
@@ -1158,7 +1158,7 @@ INPUT_PORTS_END
static WRITE8_DEVICE_HANDLER( apollo_kbd_putchar ) {
// put keyboard character to the keyboard sio
// DLOG1(("apollo_kbd_putchar: 0x%02x", data));
- apollo_sio_rx_data(device->machine().device(APOLLO_SIO_TAG), 0, data);
+ apollo_sio_rx_data(space.machine().device(APOLLO_SIO_TAG), 0, data);
}
static READ8_DEVICE_HANDLER( apollo_kbd_has_beeper ) {
@@ -1181,7 +1181,7 @@ static WRITE8_DEVICE_HANDLER( terminal_kbd_putchar ) {
// FIXME: as of mess0145u1, terminal.c will append a null character after each input character
if (data != 0)
{
- apollo_sio_rx_data(device->machine().device(APOLLO_SIO_TAG), 1, data);
+ apollo_sio_rx_data(space.machine().device(APOLLO_SIO_TAG), 1, data);
}
}