diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/drivers/dacholer.c | 2 | ||||
| -rw-r--r-- | src/mame/machine/qix.c | 3 |
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 */ |
