-
Notifications
You must be signed in to change notification settings - Fork 0
/
mytypes.h
executable file
·34 lines (29 loc) · 1.41 KB
/
mytypes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/****************************************************************************
* *
* Third Year Project *
* *
* An IBM PC Emulator *
* For Unix and X Windows *
* *
* By David Hedley *
* *
* *
* This program is Copyrighted. Consult the file COPYRIGHT for more details *
* *
****************************************************************************/
/* This is MYTYPES.H It contains definitions for the basic types to ease
portability */
#ifndef MYTYPES_H
#define MYTYPES_H
typedef signed char INT8;
typedef unsigned char UINT8;
typedef signed short int INT16;
typedef unsigned short int UINT16;
typedef signed int INT32;
typedef unsigned int UINT32;
#define PCEMU_LITTLE_ENDIAN
typedef UINT8 BYTE;
typedef UINT16 WORD;
typedef UINT32 DWORD;
typedef BYTE Boolean;
#endif