From e39802db90860d6628c35265f7c78ce3534f5a53 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Thu, 4 Apr 2019 07:36:51 +0200 Subject: 68000: Rework interrupt handling [O. Galibert] * Implement the cpu space as an address space * Make all vectored interrupts use the cpu space * Make it possible to direct the cpu space to another space, use it for amiga (which handles it as a normal AS_PROGRAM read) * Make it possible to disable the priority muxer and get 3 lines instead, use it for cps2 --- src/mame/drivers/exprraid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mame/drivers/exprraid.cpp') diff --git a/src/mame/drivers/exprraid.cpp b/src/mame/drivers/exprraid.cpp index 94c766a933e..c424e16ef87 100644 --- a/src/mame/drivers/exprraid.cpp +++ b/src/mame/drivers/exprraid.cpp @@ -472,7 +472,7 @@ GFXDECODE_END /* handler called by the 3812 emulator when the internal timers cause an IRQ */ WRITE_LINE_MEMBER(exprraid_state::irqhandler) { - m_slave->set_input_line_and_vector(0, state, 0xff); + m_slave->set_input_line_and_vector(0, state, 0xff); // M6809 } void exprraid_state::machine_start() -- cgit v1.2.3