summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/novag_delta1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/novag_delta1.cpp')
-rw-r--r--src/mame/drivers/novag_delta1.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/novag_delta1.cpp b/src/mame/drivers/novag_delta1.cpp
index b133e2fa2d0..ccf7a530e6f 100644
--- a/src/mame/drivers/novag_delta1.cpp
+++ b/src/mame/drivers/novag_delta1.cpp
@@ -103,9 +103,9 @@ void delta1_state::main_map(address_map &map)
void delta1_state::main_io(address_map &map)
{
- map(0x0, 0x0).rw(FUNC(delta1_state::input_r), FUNC(delta1_state::mux_w));
- map(0x1, 0x1).w(FUNC(delta1_state::digit_w));
- map(0xc, 0xf).rw("f3853", FUNC(f3853_device::read), FUNC(f3853_device::write));
+ map(0x00, 0x00).rw(FUNC(delta1_state::input_r), FUNC(delta1_state::mux_w));
+ map(0x01, 0x01).w(FUNC(delta1_state::digit_w));
+ map(0x0c, 0x0f).rw("f3853", FUNC(f3853_device::read), FUNC(f3853_device::write));
}