mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-04 13:31:26 +00:00
Actually, I think the 6850 is active low for interrupts.
This commit is contained in:
parent
7a2de47f58
commit
51b4b5551d
@ -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.
|
||||
);
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user