11 lines
200 B
C
11 lines
200 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include <process.h>
|
|
|
|
void exception_vector_table(void);
|
|
|
|
void exception_init(void);
|
|
void not_implemented_handler(void);
|
|
void synchronous_handler(trapframe_t *regs);
|