summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/pds.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/pds.cpp')
-rw-r--r--src/devices/bus/isa/pds.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/bus/isa/pds.cpp b/src/devices/bus/isa/pds.cpp
index 45dffd9904e..65a35db2b14 100644
--- a/src/devices/bus/isa/pds.cpp
+++ b/src/devices/bus/isa/pds.cpp
@@ -56,6 +56,7 @@ void isa8_pds_device::device_stop()
{
}
-MACHINE_CONFIG_START(isa8_pds_device::device_add_mconfig)
- MCFG_DEVICE_ADD("pds_ppi", I8255, 0)
-MACHINE_CONFIG_END
+void isa8_pds_device::device_add_mconfig(machine_config &config)
+{
+ I8255(config, m_ppi);
+}