00d7004815
Serial IRQ still wip
13 lines
304 B
C
13 lines
304 B
C
#pragma once
|
|
#include "stdarg.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);
|
|
void serial_handler(struct interrupt_frame *frame);
|