summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/mirage.c
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2012-12-03 02:07:52 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2012-12-03 02:07:52 +0000
commit3e599212eb6be0d881fdbc5ae740f21e6d7e8160 (patch)
tree2da0a41242e20bd2e9de7323c34182e34d185977 /src/mess/drivers/mirage.c
parente6c71af43fded3069e88df3b32a30ae79079cbff (diff)
6850acia: bring IRQ line into standard usage (ASSERT_LINE = IRQ active) [R. Belmont]
(nw portion) These are the only 3 drivers I found that appear to use the 6850 IRQ callback; many others had it commented out. If you own such a driver and you commented it out due to weird behavior or whatever (isa_gus.c?) you might want to try again.
Diffstat (limited to 'src/mess/drivers/mirage.c')
-rw-r--r--src/mess/drivers/mirage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/mirage.c b/src/mess/drivers/mirage.c
index 2567bce690a..982c588ecff 100644
--- a/src/mess/drivers/mirage.c
+++ b/src/mess/drivers/mirage.c
@@ -102,7 +102,7 @@ SLOT_INTERFACE_END
WRITE_LINE_MEMBER(mirage_state::acia_irq_w)
{
- m_maincpu->set_input_line(M6809_FIRQ_LINE, state ? CLEAR_LINE : ASSERT_LINE);
+ m_maincpu->set_input_line(M6809_FIRQ_LINE, state);
}
void mirage_state::fdc_intrq_w(bool state)