summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/dps1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/dps1.cpp')
-rw-r--r--src/mame/drivers/dps1.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/dps1.cpp b/src/mame/drivers/dps1.cpp
index 93bf9775b78..e83035d8679 100644
--- a/src/mame/drivers/dps1.cpp
+++ b/src/mame/drivers/dps1.cpp
@@ -44,6 +44,7 @@ public:
DECLARE_DRIVER_INIT(dps1);
DECLARE_MACHINE_RESET(dps1);
+ void dps1(machine_config &config);
private:
bool m_dma_dir;
uint16_t m_dma_adr;
@@ -181,7 +182,7 @@ static SLOT_INTERFACE_START( floppies )
SLOT_INTERFACE( "floppy0", FLOPPY_8_DSDD )
SLOT_INTERFACE_END
-static MACHINE_CONFIG_START( dps1 )
+MACHINE_CONFIG_START(dps1_state::dps1)
// basic machine hardware
MCFG_CPU_ADD("maincpu", Z80, 4000000)
MCFG_CPU_PROGRAM_MAP(mem_map)