summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2018-05-28 23:14:00 +0900
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-05-28 10:14:00 -0400
commitc92a6ba21cb198bfe0318b366169e0fcf4076d43 (patch)
tree6af379ae30f3170badda5673605223d0abb7e5b9
parent8f64107824d7927127c42effbf453031d2d84f14 (diff)
ms32.cpp : CPU type identification (#3620)
* ms32.cpp : CPU type identification * ms32.cpp : Fix audiocpu clock
-rw-r--r--src/mame/drivers/ms32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ms32.cpp b/src/mame/drivers/ms32.cpp
index 1ad68ff584a..8b9994714a5 100644
--- a/src/mame/drivers/ms32.cpp
+++ b/src/mame/drivers/ms32.cpp
@@ -1703,13 +1703,13 @@ void ms32_state::machine_reset()
MACHINE_CONFIG_START(ms32_state::ms32)
/* basic machine hardware */
- MCFG_DEVICE_ADD("maincpu", V70, 20000000) // 20MHz
+ MCFG_DEVICE_ADD("maincpu", V70, 20000000) // D70632GD-20 20MHz
MCFG_DEVICE_PROGRAM_MAP(ms32_map)
MCFG_DEVICE_IRQ_ACKNOWLEDGE_DRIVER(ms32_state,irq_callback)
MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", ms32_state, ms32_interrupt, "screen", 0, 1)
- MCFG_DEVICE_ADD("audiocpu", Z80, 4000000) // Unverified; it's possibly higher than 4MHz
+ MCFG_DEVICE_ADD("audiocpu", Z80, 8000000) // Z0840008PSC, Clock from notes
MCFG_DEVICE_PROGRAM_MAP(ms32_sound_map)
MCFG_QUANTUM_TIME(attotime::from_hz(60000))