summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vsnes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vsnes.cpp')
-rw-r--r--src/mame/drivers/vsnes.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/vsnes.cpp b/src/mame/drivers/vsnes.cpp
index d935b964e59..618e9df385a 100644
--- a/src/mame/drivers/vsnes.cpp
+++ b/src/mame/drivers/vsnes.cpp
@@ -276,9 +276,9 @@ void vsnes_state::vsnes_bootleg_z80_map(address_map &map)
map(0x6001, 0x6001).r(FUNC(vsnes_state::vsnes_bootleg_z80_address_r)); // ^
- map(0x60FA, 0x60FA).w("sn1", FUNC(sn76489_device::command_w));
- map(0x60F9, 0x60F9).w("sn2", FUNC(sn76489_device::command_w));
- map(0x60FF, 0x60FF).w("sn3", FUNC(sn76489_device::command_w));
+ map(0x60FA, 0x60FA).w("sn1", FUNC(sn76489_device::write));
+ map(0x60F9, 0x60F9).w("sn2", FUNC(sn76489_device::write));
+ map(0x60FF, 0x60FF).w("sn3", FUNC(sn76489_device::write));
}