hos/kernel/isr/interrupts.cc
2009-07-24 14:19:31 +00:00

20 lines
253 B
C++
Executable File

#include "hos_types.h"
#include "interrupts.h"
extern "C" {
void isr(u8_t int_num, int_stack_t * int_stack)
{
switch (int_num)
{
}
}
} /* extern "C" */
void interrupts_bootstrap()
{
/* TODO: set up IDTR, IDT */
}