1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Corrects interrupt mask generation.

This commit is contained in:
Thomas Harte 2019-10-24 22:37:32 -04:00
parent f2f98ed60c
commit 7a2de47f58

View File

@ -241,7 +241,7 @@ void MFP68901::reevaluate_gpip_interrupts() {
if(new_interrupt_mask) {
begin_interrupts(
(new_interrupt_mask & 0x0f) |
((new_interrupt_mask & 0x03) << 2) |
((new_interrupt_mask & 0x30) << 2) |
((new_interrupt_mask & 0xc0) << 8)
);
}