24 lines
319 B
C
Executable File
24 lines
319 B
C
Executable File
/* Completely rewritten */
|
|
|
|
#ifndef __TYPEDEFS_H__
|
|
#define __TYPEDEFS_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef unsigned bit;
|
|
|
|
typedef uint8_t byte;
|
|
|
|
typedef int8_t sbyte;
|
|
|
|
typedef uint16_t word;
|
|
typedef int16_t sword;
|
|
|
|
typedef uint32_t dword;
|
|
typedef int32_t sdword;
|
|
|
|
typedef uint16_t ushort;
|
|
typedef int16_t sshort;
|
|
|
|
#endif
|