-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtypedefs.h
executable file
·37 lines (31 loc) · 1.13 KB
/
typedefs.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
35
36
37
/***************************************************************************
* NESHLA: The Nintendo Entertainment System High Level Assembler
* Copyright (C) 2003,2004,2005 Brian Provinciano, http://www.bripro.com
*
* This program is free software.
* You may use this code for anything you wish.
* It comes with no warranty.
***************************************************************************/
/*********************************************************************/
#ifndef _typedefs_h_
#define _typedefs_h_
/*********************************************************************/
#ifdef _SYS_VS
#define FASTCALL
#endif
#ifdef _SYS_BCB
#define FASTCALL __fastcall
#endif
/* data types */
typedef unsigned char U8;
typedef signed char S8;
typedef unsigned short U16;
typedef signed short S16;
typedef unsigned long U32;
typedef signed long S32;
typedef unsigned short BOOL;
#define TRUE 1
#define FALSE 0
/******************************************************************************/
#endif
/******************************************************************************/