fixes issue with exceptions (im dumb)
This commit is contained in:
@ -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");
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user