1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-07-02 14:29:39 +00:00
8bitworkshop/emsrc/votrax/util.h
2017-04-04 09:12:52 -04:00

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