#ifndef JOVE_ARCH_INTERRUPT_H #define JOVE_ARCH_INTERRUPT_H 1 #include "cpu.h" /**Register a handler for a specified interrupt code. * @param code interrupt to handle. * @param handler to call.*/ void int_set_handler(unsigned char code, struct Registers *(*handler)(struct Registers*)); #endif