Add method to post an interrupt in software

This commit is contained in:
Eryn Wells 2016-03-13 15:47:50 -04:00
parent cf8047f7be
commit 1f6ce53e08
2 changed files with 10 additions and 0 deletions

View file

@ -55,6 +55,8 @@ struct InterruptHandler
void enableInterrupts() const;
void disableInterrupts() const;
void postInterrupt(uint8_t interrupt);
private:
PIC mPIC;
IDT mIDT;