oscar64/include/c64/types.h

11 lines
161 B
C

#ifndef C64_TYPES_H
#define C64_TYPES_H
typedef unsigned char byte;
typedef unsigned int word;
typedef unsigned long dword;
typedef signed char sbyte;
#endif