aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/arch/x86_64/isr_handler.cpp
blob: caae24d51cbaf49c2141caa97727557e27f4ec1c (plain) (blame)
1
2
3
4
5
6
#include <stdint.h>
#include <stdio.h>

extern "C" void exception_handler(int e) {
    printf("Exception: %x", e);
}