1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-26 10:29:31 +00:00

Merge pull request #1268 from TomHarte/EOI

Support auto-EOI.
This commit is contained in:
Thomas Harte 2023-12-13 10:52:00 -05:00 committed by GitHub
commit def1f90d86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ class PIC {
if(in_service_) {
eoi_target_ = id;
awaiting_eoi_ = true;
awaiting_eoi_ = !auto_eoi_;
requests_ &= ~in_service_;
return vector_base_ + id;
}