stkarm/include/interrupt.h

13 lines
205 B
C
Raw Normal View History

#ifndef INTERRUPT_H
#define INTERRUPT_H
#include <stdint.h>
extern "C" void fireswi(void);
namespace interrupt {
extern void (*handler[])(const uint8_t cpuID, const uint16_t interruptID);
}
#endif