/****************************************************************************
*                                                                           *
*                            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 INT16;
typedef unsigned short UINT16;
typedef signed long INT32;
typedef unsigned long UINT32;

#ifdef AMIGA
#include <exec/types.h>
#else
typedef UINT8 UBYTE;
typedef UINT16 UWORD;
typedef UINT32 ULONG;
#endif

#endif
