1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-20 08:29:30 +00:00
8bitworkshop/emsrc/votrax/util.h

13 lines
174 B
C
Raw Normal View History

2017-04-04 13:09:48 +00:00
#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