1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-17 13:29:02 +00:00

Fixed: setting an interrupt control value with the lowest bit set could result in interrupts that can't be disabled.

This commit is contained in:
Thomas Harte 2016-03-12 22:55:33 -05:00
parent 6327311130
commit cdff90f20d

View File

@ -116,7 +116,7 @@ unsigned int Machine::perform_bus_operation(CPU6502::BusOperation operation, uin
}
else
{
_interrupt_control = *value;
_interrupt_control = (*value) & ~1;
evaluate_interrupts();
}
break;