summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/alpha68k_n.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/alpha68k_n.cpp')
-rw-r--r--src/mame/drivers/alpha68k_n.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/alpha68k_n.cpp b/src/mame/drivers/alpha68k_n.cpp
index 4d000571333..49931423cd0 100644
--- a/src/mame/drivers/alpha68k_n.cpp
+++ b/src/mame/drivers/alpha68k_n.cpp
@@ -431,10 +431,10 @@ void alpha68k_N_state::sound_iomap(address_map &map)
{
map.global_mask(0xff);
map(0x10, 0x11).w("ym1", FUNC(ym2203_device::write));
- map(0x80, 0x80).w("ym2", FUNC(ym2203_device::write_port_w));
- map(0x81, 0x81).w("ym2", FUNC(ym2203_device::control_port_w));
- map(0x90, 0x90).w("ym3", FUNC(ym2203_device::write_port_w));
- map(0x91, 0x91).w("ym3", FUNC(ym2203_device::control_port_w));
+ map(0x80, 0x80).w("ym2", FUNC(ym2203_device::data_w));
+ map(0x81, 0x81).w("ym2", FUNC(ym2203_device::address_w));
+ map(0x90, 0x90).w("ym3", FUNC(ym2203_device::data_w));
+ map(0x91, 0x91).w("ym3", FUNC(ym2203_device::address_w));
}
void jongbou_state::sound_map(address_map &map)