diff options
Diffstat (limited to 'src/isr.c')
-rw-r--r-- | src/isr.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/isr.c b/src/isr.c new file mode 100644 index 0000000..fbc61dc --- /dev/null +++ b/src/isr.c @@ -0,0 +1,8 @@ +#include "isr.h" +#include "print.h" + +void isr_handler(struct registers regs) { + printToMonitor("recieved interrupt: \n"); + printIntToMonitor(regs.int_no, 10); + printToMonitor("\n"); +} |