summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2008-12-14 16:17:25 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2008-12-14 16:17:25 +0000
commit0a5ed5cca3d14ba8652f7b21eed0da4fcfae1dd8 (patch)
treea29a51ca9413cccb0ed8145f926f08c41d0e16de
parent0508c7668710f2c68f94253dd61adc2821ae974b (diff)
(...and fixed a mcu incorrect clock speed while testing that bug)
-rw-r--r--src/mame/drivers/jangou.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/jangou.c b/src/mame/drivers/jangou.c
index d1d1a9b6c1d..00814c46785 100644
--- a/src/mame/drivers/jangou.c
+++ b/src/mame/drivers/jangou.c
@@ -636,13 +636,13 @@ static MACHINE_DRIVER_START( jngolady )
MDRV_CPU_MODIFY("cpu0")
MDRV_CPU_PROGRAM_MAP(0, jngolady_cpu0_map)
- MDRV_CPU_ADD("nsc", NSC8105, MASTER_CLOCK / 16)
- MDRV_CPU_PROGRAM_MAP(nsc_map, 0)
-
MDRV_CPU_MODIFY("cpu1")
MDRV_CPU_PROGRAM_MAP(0, jngolady_cpu1_map)
MDRV_CPU_IO_MAP(0, jngolady_cpu1_io)
+ MDRV_CPU_ADD("nsc", NSC8105, MASTER_CLOCK / 8)
+ MDRV_CPU_PROGRAM_MAP(nsc_map, 0)
+
/* sound hardware */
MDRV_SOUND_START(NULL)
MDRV_SOUND_REMOVE("cvsd")