mbr_asm/exception_handler.c
2018-07-12 12:20:27 +02:00

12 lines
246 B
C

#include "exception.h"
#include "vga.h"
// Need GCC > 6
__attribute__ ((interrupt))
void print_handler(struct interrupt_frame *frame, ulong error_code){
printString("EXCEPTION", RED, BLACK, 0, 6);
(void) frame;
(void) error_code;
}