summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/egret.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/egret.cpp')
-rw-r--r--src/mame/machine/egret.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mame/machine/egret.cpp b/src/mame/machine/egret.cpp
index 0959485bfad..6b3054dd537 100644
--- a/src/mame/machine/egret.cpp
+++ b/src/mame/machine/egret.cpp
@@ -84,11 +84,10 @@ void egret_device::egret_map(address_map &map)
// device_add_mconfig - add device configuration
//-------------------------------------------------
-void egret_device::device_add_mconfig(machine_config &config)
-{
- M68HC05EG(config, m_maincpu, XTAL(32'768)*192); // 32.768 kHz input clock, can be PLL'ed to x128 = 4.1 MHz under s/w control
- m_maincpu->set_addrmap(AS_PROGRAM, &egret_device::egret_map);
-}
+MACHINE_CONFIG_START(egret_device::device_add_mconfig)
+ MCFG_DEVICE_ADD(EGRET_CPU_TAG, M68HC05EG, XTAL(32'768)*192) // 32.768 kHz input clock, can be PLL'ed to x128 = 4.1 MHz under s/w control
+ MCFG_DEVICE_PROGRAM_MAP(egret_map)
+MACHINE_CONFIG_END
const tiny_rom_entry *egret_device::device_rom_region() const
{