29f085b7aa
and rename types.h into stdarg.h
12 lines
252 B
C
12 lines
252 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);
|