summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/xain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/xain.cpp')
-rw-r--r--src/mame/drivers/xain.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/xain.cpp b/src/mame/drivers/xain.cpp
index 93d825f5866..a240746e953 100644
--- a/src/mame/drivers/xain.cpp
+++ b/src/mame/drivers/xain.cpp
@@ -451,14 +451,14 @@ void xain_state::machine_start()
static MACHINE_CONFIG_START( xsleena )
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", M6809, CPU_CLOCK)
+ MCFG_CPU_ADD("maincpu", MC6809E, CPU_CLOCK) // 68B09E
MCFG_CPU_PROGRAM_MAP(main_map)
MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", xain_state, scanline, "screen", 0, 1)
- MCFG_CPU_ADD("sub", M6809, CPU_CLOCK)
+ MCFG_CPU_ADD("sub", MC6809E, CPU_CLOCK) // 68B09E
MCFG_CPU_PROGRAM_MAP(cpu_map_B)
- MCFG_CPU_ADD("audiocpu", M6809, CPU_CLOCK)
+ MCFG_CPU_ADD("audiocpu", MC6809, PIXEL_CLOCK) // 68A09
MCFG_CPU_PROGRAM_MAP(sound_map)
MCFG_DEVICE_ADD("mcu", TAITO68705_MCU, MCU_CLOCK)