* Implement SWI handler to enable/disable interrupts * Implement event system to deal with kicking non-interrupt code
13 lines
147 B
C
13 lines
147 B
C
#ifndef __TYPES_H
|
|
#define __TYPES_H
|
|
|
|
typedef int bool;
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
|
|
#define NULL 0
|
|
|
|
typedef int size_t;
|
|
|
|
#endif /* __TYPES_H */
|