summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/mach32.cpp
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-06-07 21:48:54 +0200
committer mooglyguy <therealmogminer@gmail.com>2018-06-07 21:49:11 +0200
commitb66e57a15c28847d8ecda49fbe1c8cecf2af1d4f (patch)
tree2b0911e685f555782b812b1f9ea252c411f75af1 /src/devices/bus/isa/mach32.cpp
parent6bc839999ca1b3b325c77058cdc62a7f26030714 (diff)
Removed nearly all custom MCFG macros from eepromser, migrated more of policetr to newer syntax, nw
Diffstat (limited to 'src/devices/bus/isa/mach32.cpp')
-rw-r--r--src/devices/bus/isa/mach32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/mach32.cpp b/src/devices/bus/isa/mach32.cpp
index 8867a35d313..8525daf745b 100644
--- a/src/devices/bus/isa/mach32.cpp
+++ b/src/devices/bus/isa/mach32.cpp
@@ -50,7 +50,7 @@ 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_EEPROM_SERIAL_93C56_ADD("ati_eeprom")
+ MCFG_DEVICE_ADD("ati_eeprom", EEPROM_SERIAL_93C56_16BIT)
MACHINE_CONFIG_END
void mach32_8514a_device::device_start()
@@ -336,7 +336,7 @@ 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_EEPROM_SERIAL_93C56_ADD("ati_eeprom")
+ MCFG_DEVICE_ADD("ati_eeprom", EEPROM_SERIAL_93C56_16BIT)
MACHINE_CONFIG_END
void mach64_8514a_device::device_start()