summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fb01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fb01.cpp')
-rw-r--r--src/mame/drivers/fb01.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/fb01.cpp b/src/mame/drivers/fb01.cpp
index 21707c452cc..3c2202390da 100644
--- a/src/mame/drivers/fb01.cpp
+++ b/src/mame/drivers/fb01.cpp
@@ -89,8 +89,7 @@ void fb01_state::fb01_io(address_map &map)
map(0x20, 0x20).portr("PANEL");
// 30-31 HD44780A
- map(0x30, 0x30).rw("hd44780", FUNC(hd44780_device::control_read), FUNC(hd44780_device::control_write));
- map(0x31, 0x31).rw("hd44780", FUNC(hd44780_device::data_read), FUNC(hd44780_device::data_write));
+ map(0x30, 0x31).rw("hd44780", FUNC(hd44780_device::read), FUNC(hd44780_device::write));
}