diff options
author | 2018-08-23 18:34:05 +0200 | |
---|---|---|
committer | 2018-08-23 18:34:21 +0200 | |
commit | f10c6be54ff10fe557388f4e1d7fe3b648782b21 (patch) | |
tree | 24c452f1943990bbb683220b4b71315a89e7926f /src/devices/bus/isa/mach32.cpp | |
parent | 5d5a94e3d7bd1e7b4a3d66f68fb20fc4259480b5 (diff) |
ds1315, ds1386, ds2404, ds75160a, ds75161a, eeprom, eepromser, eeprompar: Removed MCFG, nw
Diffstat (limited to 'src/devices/bus/isa/mach32.cpp')
-rw-r--r-- | src/devices/bus/isa/mach32.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/devices/bus/isa/mach32.cpp b/src/devices/bus/isa/mach32.cpp index 8525daf745b..2f686745a5d 100644 --- a/src/devices/bus/isa/mach32.cpp +++ b/src/devices/bus/isa/mach32.cpp @@ -47,11 +47,11 @@ mach32_device::mach32_device(const machine_config &mconfig, device_type type, co { } -MACHINE_CONFIG_START(mach32_device::device_add_mconfig) - MCFG_DEVICE_ADD("8514a", ATIMACH32_8514A, 0) - downcast<ibm8514a_device*>(device)->set_vga(DEVICE_SELF); - MCFG_DEVICE_ADD("ati_eeprom", EEPROM_SERIAL_93C56_16BIT) -MACHINE_CONFIG_END +void mach32_device::device_add_mconfig(machine_config &config) +{ + ATIMACH32_8514A(config, "8514a", 0).set_vga(DEVICE_SELF); + EEPROM_93C56_16BIT(config, "ati_eeprom"); +} void mach32_8514a_device::device_start() { @@ -333,11 +333,11 @@ mach64_device::mach64_device(const machine_config &mconfig, device_type type, co { } -MACHINE_CONFIG_START(mach64_device::device_add_mconfig) - MCFG_DEVICE_ADD("8514a", ATIMACH64_8514A, 0) - downcast<ibm8514a_device*>(device)->set_vga(DEVICE_SELF); - MCFG_DEVICE_ADD("ati_eeprom", EEPROM_SERIAL_93C56_16BIT) -MACHINE_CONFIG_END +void mach64_device::device_add_mconfig(machine_config &config) +{ + ATIMACH64_8514A(config, "8514a", 0).set_vga(DEVICE_SELF); + EEPROM_93C56_16BIT(config, "ati_eeprom"); +} void mach64_8514a_device::device_start() { |