summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/a2themill.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/a2themill.cpp')
-rw-r--r--src/devices/bus/a2bus/a2themill.cpp16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/devices/bus/a2bus/a2themill.cpp b/src/devices/bus/a2bus/a2themill.cpp
index 9ac1f607f44..4f32c1a9be4 100644
--- a/src/devices/bus/a2bus/a2themill.cpp
+++ b/src/devices/bus/a2bus/a2themill.cpp
@@ -44,24 +44,18 @@ static ADDRESS_MAP_START( m6809_mem, AS_PROGRAM, 8, a2bus_themill_device )
AM_RANGE(0x0000, 0xffff) AM_READWRITE(dma_r, dma_w)
ADDRESS_MAP_END
-MACHINE_CONFIG_START( a2themill )
- MCFG_CPU_ADD(M6809_TAG, M6809, 1021800) // M6809 runs at ~1 MHz as per Stellation Two's print ads
- MCFG_CPU_PROGRAM_MAP(m6809_mem)
-MACHINE_CONFIG_END
-
/***************************************************************************
FUNCTION PROTOTYPES
***************************************************************************/
//-------------------------------------------------
-// machine_config_additions - device-specific
-// machine configurations
+// device_add_mconfig - add device configuration
//-------------------------------------------------
-machine_config_constructor a2bus_themill_device::device_mconfig_additions() const
-{
- return MACHINE_CONFIG_NAME( a2themill );
-}
+MACHINE_CONFIG_MEMBER( a2bus_themill_device::device_add_mconfig )
+ MCFG_CPU_ADD(M6809_TAG, M6809, 1021800) // M6809 runs at ~1 MHz as per Stellation Two's print ads
+ MCFG_CPU_PROGRAM_MAP(m6809_mem)
+MACHINE_CONFIG_END
//**************************************************************************
// LIVE DEVICE