mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-18 01:30:56 +00:00
Fixes IOPortsAndTimers classification.
This commit is contained in:
parent
759007ffc1
commit
b78090ec76
@ -352,7 +352,7 @@ void Chipset::update_interrupts() {
|
|||||||
interrupt_level_ = 4;
|
interrupt_level_ = 4;
|
||||||
} else if(enabled_requests & (InterruptFlag::Copper | InterruptFlag::VerticalBlank | InterruptFlag::Blitter)) {
|
} else if(enabled_requests & (InterruptFlag::Copper | InterruptFlag::VerticalBlank | InterruptFlag::Blitter)) {
|
||||||
interrupt_level_ = 3;
|
interrupt_level_ = 3;
|
||||||
} else if(enabled_requests & (InterruptFlag::External)) {
|
} else if(enabled_requests & (InterruptFlag::IOPortsAndTimers)) {
|
||||||
interrupt_level_ = 2;
|
interrupt_level_ = 2;
|
||||||
} else if(enabled_requests & (InterruptFlag::SerialPortTransmit | InterruptFlag::DiskBlock | InterruptFlag::Software)) {
|
} else if(enabled_requests & (InterruptFlag::SerialPortTransmit | InterruptFlag::DiskBlock | InterruptFlag::Software)) {
|
||||||
interrupt_level_ = 1;
|
interrupt_level_ = 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user