|
I have another question. Where should I put the interrupt handler for the mouse? I see that @isoux put interrupt code in Pure64 but not in BareMetal. I started with putting my interrupt handler code in BareMetal but not Pure64 and it isn't getting called, so I am guessing it is in the wrong place. Or should it be in both? I see keyboard interrupt handler code in both places, though it isn't the same. |
Answered by
IanSeyler
Dec 1, 2024
Replies: 1 comment
|
The mouse driver would be part of the kernel so BareMetal’s interrupt.asm would be the place. Pure64 is just the loader. It isn’t used once the kernel is running |
0 replies
Answer selected by
the-grue
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The mouse driver would be part of the kernel so BareMetal’s interrupt.asm would be the place.
Pure64 is just the loader. It isn’t used once the kernel is running