fixes issue with exceptions (im dumb)

This commit is contained in:
2025-06-01 20:24:05 -04:00
parent 89c02d6a93
commit ecc91fdc7d
3 changed files with 15 additions and 3 deletions

View File

@ -25,7 +25,7 @@ void kmain(void)
/**
* The computer is now hanging on INTERRUPT 32,
* this is good because that means the PIC is working, its the timer interrupt
* this is good because that means the PIC is working, its the timer interrupt, except... the PIT is masked off...
* we need to now implement the ISR routines in exception_handler,
* first i want to implement all of the code for the basic exceptions..
* then i want to setup the PIC triggers
@ -33,4 +33,12 @@ void kmain(void)
* now for keyboard stuff, i believe i need to start looking into setting up a ps/2 driver before the interrupts will even start arriving..
*
*/
printf("Entering loop...\n");
while (1) {
continue;
}
printf("Exiting loop...\n");
}