1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-05 23:56:33 +00:00

Merge pull request #971 from TomHarte/ChaseHQ

Flip meaning of INT1 input read.
This commit is contained in:
Thomas Harte 2021-07-09 22:48:01 -04:00 committed by GitHub
commit 5810a1a98e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;