summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/awboard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/awboard.cpp')
-rw-r--r--src/mame/machine/awboard.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/machine/awboard.cpp b/src/mame/machine/awboard.cpp
index aae1d1f1d47..7dd54c246d7 100644
--- a/src/mame/machine/awboard.cpp
+++ b/src/mame/machine/awboard.cpp
@@ -161,13 +161,13 @@ DEFINE_DEVICE_TYPE(AW_ROM_BOARD, aw_rom_board, "aw_rom_board", "Sammy Atomiswave
void aw_rom_board::submap(address_map &map)
{
- map(0x00, 0x01).w(this, FUNC(aw_rom_board::epr_offsetl_w));
- map(0x02, 0x03).w(this, FUNC(aw_rom_board::epr_offseth_w));
- map(0x06, 0x07).w(this, FUNC(aw_rom_board::mpr_record_index_w));
- map(0x08, 0x09).w(this, FUNC(aw_rom_board::mpr_first_file_index_w));
- map(0x0a, 0x0b).w(this, FUNC(aw_rom_board::mpr_file_offsetl_w));
- map(0x0c, 0x0d).w(this, FUNC(aw_rom_board::mpr_file_offseth_w));
- map(0x40, 0x41).rw(this, FUNC(aw_rom_board::pio_r), FUNC(aw_rom_board::pio_w));
+ map(0x00, 0x01).w(FUNC(aw_rom_board::epr_offsetl_w));
+ map(0x02, 0x03).w(FUNC(aw_rom_board::epr_offseth_w));
+ map(0x06, 0x07).w(FUNC(aw_rom_board::mpr_record_index_w));
+ map(0x08, 0x09).w(FUNC(aw_rom_board::mpr_first_file_index_w));
+ map(0x0a, 0x0b).w(FUNC(aw_rom_board::mpr_file_offsetl_w));
+ map(0x0c, 0x0d).w(FUNC(aw_rom_board::mpr_file_offseth_w));
+ map(0x40, 0x41).rw(FUNC(aw_rom_board::pio_r), FUNC(aw_rom_board::pio_w));
}
aw_rom_board::aw_rom_board(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)