summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2019-03-08 16:12:20 -0500
committer GitHub <noreply@github.com>2019-03-08 16:12:20 -0500
commitd0b18581d5f76e624653b60fe479ab8b299c3a29 (patch)
treed22f2b3deca19cec3088e510b880dba26f971b6f
parent5978a133fdb49a10bd2a7bff324c71c05a22e10e (diff)
parentc4c409c866a34b57622f24ba9eb87d32279a0eb4 (diff)
Merge pull request #4727 from cam900/patch-82
itech32.cpp : Correct sound cpu type
-rw-r--r--src/mame/drivers/itech32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/itech32.cpp b/src/mame/drivers/itech32.cpp
index 144e43ad5d8..6ae1439c9cc 100644
--- a/src/mame/drivers/itech32.cpp
+++ b/src/mame/drivers/itech32.cpp
@@ -1668,7 +1668,7 @@ INPUT_PORTS_END
void itech32_state::base_devices(machine_config &config)
{
- MC6809(config, m_soundcpu, SOUND_CLOCK/2);
+ MC6809E(config, m_soundcpu, SOUND_CLOCK/8); // EF68B09EP
m_soundcpu->set_addrmap(AS_PROGRAM, &itech32_state::sound_map);
nvram_device &nvram(NVRAM(config, "nvram"));