Added ISR for preemption of processes

This commit is contained in:
2021-04-17 00:59:15 -05:00
parent 4bbe63819a
commit ce6371f0c3
2 changed files with 20 additions and 9 deletions

View File

@@ -18,6 +18,9 @@ void isr_double_fault(void* frame, unsigned int error);
__attribute__ ((interrupt))
void isr_timer(void* frame);
__attribute__ ((naked))
void isr_preempt(void* frame);
__attribute__ ((naked))
void isr_ap_start(void* frame);