summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-12-04 10:50:44 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-12-04 10:50:44 +0000
commit71f9ca960213313807011bb7d774514730410b4e (patch)
tree90f585948f26583accc204f101b4b593dbd8f387
parent35dfc8bad2bffbbf85220849733ea8571ff9a5fa (diff)
From: Luigi30 [luigi30@gmail.com]
Sent: Wednesday, December 03, 2008 4:46 PM To: submit@mamedev.org Subject: bug 894 fix Fixes bug 894, elecyoyo: inserted coins and pressing start sometimes leads back to the test menu -- From: Luigi30 Sent: Tuesday, December 02, 2008 10:19 PM To: submit@mamedev.org Subject: Bug 2693 fix Fixes bug 2693
-rw-r--r--src/mame/drivers/dacholer.c2
-rw-r--r--src/mame/machine/qix.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/drivers/dacholer.c b/src/mame/drivers/dacholer.c
index 7d8b8980cf2..7cf885f462b 100644
--- a/src/mame/drivers/dacholer.c
+++ b/src/mame/drivers/dacholer.c
@@ -388,7 +388,7 @@ static void adpcm_int(running_machine *machine, int cpunum)
msm_toggle^=1;
if (msm_toggle==0)
{
- cpu_set_input_line_and_vector(machine->cpu[cpunum], 0, HOLD_LINE, 0x38);
+ cpu_set_input_line_and_vector(machine->cpu[1], 0, HOLD_LINE, 0x38);
}
}
}
diff --git a/src/mame/machine/qix.c b/src/mame/machine/qix.c
index f5a26673bb4..3ae6723fb89 100644
--- a/src/mame/machine/qix.c
+++ b/src/mame/machine/qix.c
@@ -425,7 +425,8 @@ static WRITE8_HANDLER( qixmcu_coinctrl_w )
{
qix_state *state = space->machine->driver_data;
- if (!(data & 0x04))
+ /* if (!(data & 0x04)) */
+ if (data & 0x04)
{
cpu_set_input_line(space->machine->cpu[3], M68705_IRQ_LINE, ASSERT_LINE);
/* temporarily boost the interleave to sync things up */