summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/huebler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/huebler.cpp')
-rw-r--r--src/mame/drivers/huebler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/huebler.cpp b/src/mame/drivers/huebler.cpp
index 4fb261d8fcd..f15cf98e907 100644
--- a/src/mame/drivers/huebler.cpp
+++ b/src/mame/drivers/huebler.cpp
@@ -112,9 +112,9 @@ void amu880_state::amu880_io(address_map &map)
{
map.unmap_value_high();
map.global_mask(0xff);
-// AM_RANGE(0x00, 0x00) AM_MIRROR(0x03) AM_WRITE(power_off_w)
-// AM_RANGE(0x04, 0x04) AM_MIRROR(0x02) AM_WRITE(tone_off_w)
-// AM_RANGE(0x05, 0x05) AM_MIRROR(0x02) AM_WRITE(tone_on_w)
+// map(0x00, 0x00).mirror(0x03).w(FUNC(amu880_state::power_off_w));
+// map(0x04, 0x04).mirror(0x02).w(FUNC(amu880_state::tone_off_w));
+// map(0x05, 0x05).mirror(0x02).w(FUNC(amu880_state::tone_on_w));
map(0x08, 0x09).mirror(0x02).r(FUNC(amu880_state::keyboard_r));
map(0x0c, 0x0f).rw(Z80PIO2_TAG, FUNC(z80pio_device::read_alt), FUNC(z80pio_device::write_alt));
map(0x10, 0x13).rw(Z80PIO1_TAG, FUNC(z80pio_device::read_alt), FUNC(z80pio_device::write_alt));