summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/harddriv.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-04-24 18:29:29 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-04-24 18:29:29 +0200
commit17e99cc7409a83b414281963979903bc905a53df (patch)
tree5d1dfcafaedc747dd076b3c99fd0ae5ede3043ec /src/mame/drivers/harddriv.cpp
parent9e48f9fae7cf1651eb81bf06ccbac61e9cdfc289 (diff)
mame/audio (mostly): simplified some handlers (nw)
Diffstat (limited to 'src/mame/drivers/harddriv.cpp')
-rw-r--r--src/mame/drivers/harddriv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/harddriv.cpp b/src/mame/drivers/harddriv.cpp
index ea120954021..60f1ca54f73 100644
--- a/src/mame/drivers/harddriv.cpp
+++ b/src/mame/drivers/harddriv.cpp
@@ -4714,7 +4714,7 @@ void harddriv_state::init_multisync(int compact_inputs)
// if we have a JSA board, install the read/write handlers
if (m_jsa.found())
- m_maincpu->space(AS_PROGRAM).install_readwrite_handler(0x600000, 0x603fff, read8_delegate(*m_jsa, FUNC(atari_jsa_base_device::main_response_r)), write8_delegate(*m_jsa, FUNC(atari_jsa_base_device::main_command_w)), 0xff00);
+ m_maincpu->space(AS_PROGRAM).install_readwrite_handler(0x600000, 0x603fff, read8smo_delegate(*m_jsa, FUNC(atari_jsa_base_device::main_response_r)), write8smo_delegate(*m_jsa, FUNC(atari_jsa_base_device::main_command_w)), 0xff00);
/* install handlers for the compact driving games' inputs */
if (compact_inputs)