2018-06-30 01:03:40 +02:00
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
struct interrupt_frame;
|
|
|
|
|
|
|
|
//Exception
|
|
|
|
void print_handler(struct interrupt_frame *frame, ulong error_code);
|
|
|
|
|
|
|
|
//IRQ
|
|
|
|
void keyboard_handler(struct interrupt_frame *frame);
|
2018-07-16 14:20:12 +02:00
|
|
|
void timer_handler(struct interrupt_frame *frame);
|