mbr_asm/exception_handler.c

13 lines
300 B
C
Raw Normal View History

2018-06-30 01:03:40 +02:00
#include "exception.h"
#include "vga.h"
// Need GCC > 6
__attribute__ ((interrupt))
void print_handler(struct interrupt_frame *frame, ulong error_code){
2018-07-18 15:06:31 +02:00
printStringDetails("EXCEPTION", RED, BLACK, 0, 20);
printInt(error_code, RED, BLACK, 11, 20);
2018-06-30 01:03:40 +02:00
(void) frame;
(void) error_code;
}