2018-12-30 21:44:14 +00:00
|
|
|
#ifndef INTERRUPT_H
|
|
|
|
#define INTERRUPT_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
extern "C" void fireswi(void);
|
|
|
|
|
2019-01-07 14:57:16 +00:00
|
|
|
namespace interrupt {
|
|
|
|
extern void (*handler[])(const uint8_t cpuID, const uint16_t interruptID);
|
|
|
|
}
|
2018-12-30 21:44:14 +00:00
|
|
|
|
|
|
|
#endif
|