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

Flip meaning of INT1 input read.

This commit is contained in:
Thomas Harte 2021-07-09 22:39:51 -04:00
parent 337fd15dc0
commit a4c011e3c0

View File

@ -381,7 +381,7 @@ template <bool has_disk_controller, bool is_6mhz> class ConcreteMachine:
case 0xb4:
*cycle.value =
(nick_->get_interrupt_line() ? 0x00 : 0x10) |
(nick_->get_interrupt_line() ? 0x10 : 0x00) |
dave_timer_->get_divider_state() |
interrupt_state_;
break;