summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/gba/rom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/gba/rom.cpp')
-rw-r--r--src/devices/bus/gba/rom.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/devices/bus/gba/rom.cpp b/src/devices/bus/gba/rom.cpp
index 3255d335313..1471d43a430 100644
--- a/src/devices/bus/gba/rom.cpp
+++ b/src/devices/bus/gba/rom.cpp
@@ -404,9 +404,10 @@ void gba_rom_wariotws_device::gpio_dev_write(uint16_t data, int gpio_dirs)
Carts with Flash RAM
-------------------------------------------------*/
-MACHINE_CONFIG_START(gba_rom_flash_device::device_add_mconfig)
- MCFG_PANASONIC_MN63F805MNP_ADD("flash")
-MACHINE_CONFIG_END
+void gba_rom_flash_device::device_add_mconfig(machine_config &config)
+{
+ PANASONIC_MN63F805MNP(config, "flash");
+}
READ32_MEMBER(gba_rom_flash_device::read_ram)
@@ -450,9 +451,10 @@ WRITE32_MEMBER(gba_rom_flash_device::write_ram)
}
}
-MACHINE_CONFIG_START(gba_rom_flash1m_device::device_add_mconfig)
- MCFG_SANYO_LE26FV10N1TS_ADD("flash")
-MACHINE_CONFIG_END
+void gba_rom_flash1m_device::device_add_mconfig(machine_config &config)
+{
+ SANYO_LE26FV10N1TS(config, "flash");
+}
READ32_MEMBER(gba_rom_flash1m_device::read_ram)