From 71f9ca960213313807011bb7d774514730410b4e Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 4 Dec 2008 10:50:44 +0000 Subject: 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 --- src/mame/drivers/dacholer.c | 2 +- src/mame/machine/qix.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'src') 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 */ -- cgit v1.2.3