summaryrefslogtreecommitdiff
path: root/kernel/isr.c
blob: 69c688b30b6fe10d60dc8af32cc9026571e638a9 (plain)
1
2
3
4
5
6
7
8
9
#include <kernel/isr.h>
#include <kernel/tty.h>
#include <stdint.h>

__attribute__((interrupt))
void isr_double_fault(struct interrupt_frame *frame) {
	tty_const("#DF");
	for(;;);
}