From 2dcd31e2a13b499e9ad9ce7e1aa3ecc2055db973 Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 10 Dec 2017 20:00:10 -0500 Subject: decobsmt: CPU type (nw) --- src/mame/audio/decobsmt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/audio/decobsmt.cpp b/src/mame/audio/decobsmt.cpp index 4f44be9987a..42839716bee 100644 --- a/src/mame/audio/decobsmt.cpp +++ b/src/mame/audio/decobsmt.cpp @@ -47,12 +47,12 @@ DEFINE_DEVICE_TYPE(DECOBSMT, decobsmt_device, "decobsmt", "Data East/Sega/Stern //------------------------------------------------- MACHINE_CONFIG_MEMBER( decobsmt_device::device_add_mconfig ) - MCFG_CPU_ADD(M6809_TAG, M6809, (3579580/2)) + MCFG_CPU_ADD(M6809_TAG, MC6809E, (3579580/2)) // 68B09E U6 (FIXME: clock probably wrong) MCFG_CPU_PROGRAM_MAP(decobsmt_map) MCFG_CPU_PERIODIC_INT_DRIVER(decobsmt_device, decobsmt_firq_interrupt, 489) /* Fixed FIRQ of 489Hz as measured on real (pinball) machine */ MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker") - MCFG_BSMT2000_ADD(BSMT_TAG, 24000000) + MCFG_BSMT2000_ADD(BSMT_TAG, XTAL_24MHz) MCFG_DEVICE_ADDRESS_MAP(0, bsmt_map) MCFG_BSMT2000_READY_CALLBACK(decobsmt_device, bsmt_ready_callback) MCFG_SOUND_ROUTE(0, "lspeaker", 2.0) -- cgit v1.2.3