summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/suna8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/suna8.cpp')
-rw-r--r--src/mame/drivers/suna8.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/suna8.cpp b/src/mame/drivers/suna8.cpp
index 5fb069b75d1..f4fad3465ff 100644
--- a/src/mame/drivers/suna8.cpp
+++ b/src/mame/drivers/suna8.cpp
@@ -40,10 +40,10 @@ Notes:
#include "cpu/z80/z80.h"
#include "machine/watchdog.h"
-#include "sound/3812intf.h"
#include "sound/ay8910.h"
#include "sound/dac.h"
#include "sound/ym2203.h"
+#include "sound/ym3812.h"
#include "speaker.h"
@@ -1299,7 +1299,7 @@ void suna8_state::hardhead_sound_map(address_map &map)
map(0xa000, 0xa001).rw("ymsnd", FUNC(ym3812_device::read), FUNC(ym3812_device::write));
map(0xa002, 0xa003).w("aysnd", FUNC(ay8910_device::address_data_w));
map(0xc000, 0xc7ff).ram(); // RAM
- map(0xc800, 0xc800).r("ymsnd", FUNC(ym3812_device::status_port_r)); // ? unsure
+ map(0xc800, 0xc800).r("ymsnd", FUNC(ym3812_device::status_r)); // ? unsure
map(0xd000, 0xd000).w(m_soundlatch2, FUNC(generic_latch_8_device::write)); //
map(0xd800, 0xd800).r(m_soundlatch, FUNC(generic_latch_8_device::read)); // From Main CPU
}