summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/amiga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/amiga.cpp')
-rw-r--r--src/mame/drivers/amiga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/amiga.cpp b/src/mame/drivers/amiga.cpp
index f8d942df2b2..7393be9ae4c 100644
--- a/src/mame/drivers/amiga.cpp
+++ b/src/mame/drivers/amiga.cpp
@@ -1855,7 +1855,7 @@ MACHINE_CONFIG_START(a3000_state::a3000)
ADDRESS_MAP_BANK(config, "overlay").set_map(&amiga_state::overlay_1mb_map32).set_options(ENDIANNESS_BIG, 32, 22, 0x200000);
// real-time clock
- MCFG_DEVICE_ADD("rtc", RP5C01, XTAL(32'768))
+ RP5C01(config, "rtc", XTAL(32'768));
// todo: zorro3 slots, super dmac, scsi
@@ -2056,7 +2056,7 @@ MACHINE_CONFIG_START(a4000_state::a4000)
MCFG_VIDEO_START_OVERRIDE(amiga_state, amiga_aga)
// real-time clock
- MCFG_DEVICE_ADD("rtc", RP5C01, XTAL(32'768))
+ RP5C01(config, "rtc", XTAL(32'768));
// ide
ata_interface_device &ata(ATA_INTERFACE(config, "ata").options(ata_devices, "hdd", nullptr, false));