mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 01:45:08 +01:00
14 lines
250 B
C
14 lines
250 B
C
|
|
||
|
#ifndef _TYPES_H_
|
||
|
#define _TYPES_H_
|
||
|
|
||
|
typedef unsigned char uint8;
|
||
|
typedef unsigned short int uint16;
|
||
|
typedef unsigned long int uint32;
|
||
|
|
||
|
typedef signed char int8;
|
||
|
typedef signed short int int16;
|
||
|
typedef signed long int int32;
|
||
|
|
||
|
#endif /* _TYPES_H_ */
|