diff options
Diffstat (limited to 'src/mame/drivers/ct486.cpp')
-rw-r--r-- | src/mame/drivers/ct486.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/mame/drivers/ct486.cpp b/src/mame/drivers/ct486.cpp index 2d7e0e7c5ac..8fe4b9c53fe 100644 --- a/src/mame/drivers/ct486.cpp +++ b/src/mame/drivers/ct486.cpp @@ -20,6 +20,7 @@ #include "bus/pc_kbd/pc_kbdc.h" #include "softlist.h" +#include "softlist_dev.h" #include "speaker.h" @@ -31,11 +32,11 @@ class ct486_state : public driver_device { public: ct486_state(const machine_config &mconfig, device_type type, const char *tag) : - driver_device(mconfig, type, tag), - m_maincpu(*this, "maincpu"), - m_cs4031(*this, "cs4031"), - m_isabus(*this, "isabus"), - m_speaker(*this, "speaker") + driver_device(mconfig, type, tag), + m_maincpu(*this, "maincpu"), + m_cs4031(*this, "cs4031"), + m_isabus(*this, "isabus"), + m_speaker(*this, "speaker") { } required_device<cpu_device> m_maincpu; @@ -103,7 +104,7 @@ ADDRESS_MAP_END // MACHINE DRIVERS //************************************************************************** -static MACHINE_CONFIG_START( ct486, ct486_state ) +static MACHINE_CONFIG_START( ct486 ) MCFG_CPU_ADD("maincpu", I486, XTAL_25MHz) MCFG_CPU_PROGRAM_MAP(ct486_map) MCFG_CPU_IO_MAP(ct486_io) @@ -199,4 +200,4 @@ ROM_END // GAME DRIVERS //************************************************************************** -COMP( 1993, ct486, 0, 0, ct486, 0, driver_device, 0, "<unknown>", "PC/AT 486 with CS4031 chipset", 0 ) +COMP( 1993, ct486, 0, 0, ct486, 0, ct486_state, 0, "<unknown>", "PC/AT 486 with CS4031 chipset", 0 ) |