mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-19 23:29:05 +00:00
Resolves specious interrupts.dic
This commit is contained in:
parent
282d0f1ebb
commit
6c9edbb7a2
@ -83,6 +83,6 @@ void VideoBase::notify_clock_tick() {
|
|||||||
|
|
||||||
void VideoBase::set_interrupts(uint8_t new_value) {
|
void VideoBase::set_interrupts(uint8_t new_value) {
|
||||||
interrupts_ = new_value & 0x7f;
|
interrupts_ = new_value & 0x7f;
|
||||||
if((interrupts_ >> 4) & 0x6)
|
if((interrupts_ >> 4) & interrupts_ & 0x6)
|
||||||
interrupts_ |= 0x80;
|
interrupts_ |= 0x80;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user