1
Files
interrupt-handling-using-th…/code/interruptdispatcher_check_spurious.cpp
2023-02-26 21:12:51 +01:00

5 lines
182 B
C++

// Excerpt from the "checkSpuriousInterrupt" function
bool InterruptService::checkSpuriousInterrupt(InterruptVector interrupt) {
return interrupt == InterruptVector::SPURIOUS;
}