1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00

Actually, I think the 6850 is active low for interrupts.

This commit is contained in:
Thomas Harte 2019-10-24 22:37:53 -04:00
parent 7a2de47f58
commit 51b4b5551d

View File

@ -609,7 +609,7 @@ class ConcreteMachine:
*/
mfp_->set_port_input(
0x80 |
((keyboard_acia_->get_interrupt_line() || midi_acia_->get_interrupt_line()) ? 0x10 : 0x00)
((keyboard_acia_->get_interrupt_line() || midi_acia_->get_interrupt_line()) ? 0x0 : 0x10) // Interrupts are active low.
);
}
};