summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms1000/tms0980.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms1000/tms0980.cpp')
-rw-r--r--src/devices/cpu/tms1000/tms0980.cpp14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/devices/cpu/tms1000/tms0980.cpp b/src/devices/cpu/tms1000/tms0980.cpp
index 13dc7e3921c..3059ff7b1d1 100644
--- a/src/devices/cpu/tms1000/tms0980.cpp
+++ b/src/devices/cpu/tms1000/tms0980.cpp
@@ -58,7 +58,7 @@ tms1980_cpu_device::tms1980_cpu_device(const machine_config &mconfig, const char
// machine configs
-static MACHINE_CONFIG_START(tms0980)
+MACHINE_CONFIG_MEMBER(tms0980_cpu_device::device_add_mconfig)
// main opcodes PLA, microinstructions PLA, output PLA, segment PLA
MCFG_PLA_ADD("ipla", 9, 22, 24)
@@ -71,12 +71,7 @@ static MACHINE_CONFIG_START(tms0980)
MCFG_PLA_FILEFORMAT(BERKELEY)
MACHINE_CONFIG_END
-machine_config_constructor tms0980_cpu_device::device_mconfig_additions() const
-{
- return MACHINE_CONFIG_NAME(tms0980);
-}
-
-static MACHINE_CONFIG_START(tms1980)
+MACHINE_CONFIG_MEMBER(tms1980_cpu_device::device_add_mconfig)
// main opcodes PLA, microinstructions PLA, output PLA
MCFG_PLA_ADD("ipla", 9, 22, 24)
@@ -87,11 +82,6 @@ static MACHINE_CONFIG_START(tms1980)
MCFG_PLA_FILEFORMAT(BERKELEY)
MACHINE_CONFIG_END
-machine_config_constructor tms1980_cpu_device::device_mconfig_additions() const
-{
- return MACHINE_CONFIG_NAME(tms1980);
-}
-
// disasm
offs_t tms0980_cpu_device::disasm_disassemble(std::ostream &stream, offs_t pc, const u8 *oprom, const u8 *opram, u32 options)