13 lines
181 B
C
13 lines
181 B
C
|
#ifndef INTERRUPT_H
|
||
|
#define INTERRUPT_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
extern "C" void setVectorBAR(void);
|
||
|
extern "C" address_t* getVectorBAR(void);
|
||
|
|
||
|
extern "C" void fireswi(void);
|
||
|
|
||
|
|
||
|
#endif
|