matos/core/interrupt.h

12 lines
251 B
C
Raw Normal View History

2018-07-20 15:41:58 +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);
void timer_handler(struct interrupt_frame *frame);