summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sbugger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sbugger.cpp')
-rw-r--r--src/mame/drivers/sbugger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/sbugger.cpp b/src/mame/drivers/sbugger.cpp
index 377222f1d9e..353193fc1bb 100644
--- a/src/mame/drivers/sbugger.cpp
+++ b/src/mame/drivers/sbugger.cpp
@@ -123,8 +123,8 @@ void sbugger_state::sbugger_map(address_map &map)
void sbugger_state::sbugger_io_map(address_map &map)
{
map(0xe0, 0xe7).rw("i8156", FUNC(i8155_device::io_r), FUNC(i8155_device::io_w));
- map(0xe8, 0xe8).w("sn76489.1", FUNC(sn76489_device::command_w));
- map(0xe9, 0xe9).w("sn76489.2", FUNC(sn76489_device::command_w));
+ map(0xe8, 0xe8).w("sn76489.1", FUNC(sn76489_device::write));
+ map(0xe9, 0xe9).w("sn76489.2", FUNC(sn76489_device::write));
}