mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-05 11:06:28 +00:00
13 lines
174 B
C
13 lines
174 B
C
|
|
#include <stdint.h>
|
|
|
|
typedef uint8_t UBYTE;
|
|
typedef int8_t SBYTE;
|
|
typedef uint16_t UWORD;
|
|
typedef int16_t SWORD;
|
|
|
|
#define Util_malloc malloc
|
|
|
|
#define FALSE 0
|
|
#define TRUE 1
|