release r2, update credits
[fceu.git] / types.h
1 /* FCE Ultra - NES/Famicom Emulator
2  *
3  * Copyright notice for this file:
4  *  Copyright (C) 2001 Aaron Oneal
5  *  Copyright (C) 2002 Ben Parnell
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #ifndef __FCEU_TYPES
23 #define __FCEU_TYPES
24
25 #include <inttypes.h>
26 typedef int8_t int8;
27 typedef int16_t int16;
28 typedef int32_t int32;
29
30 typedef uint8_t uint8;
31 typedef uint16_t uint16;
32 typedef uint32_t uint32;
33
34 //typedef unsigned char uint8;
35 //typedef unsigned short uint16;
36 //typedef unsigned long  uint32;
37
38 #ifndef __cplusplus
39 #define bool int
40 #endif
41
42 #ifdef __GNUC__
43  typedef unsigned long long uint64;
44  typedef long long int64;
45  #define INLINE inline
46  #define GINLINE inline
47 #elif MSVC
48  typedef __int64 int64;
49  typedef unsigned __int64 uint64;
50  #define INLINE __inline
51  #define GINLINE                        /* Can't declare a function INLINE
52                                            and global in MSVC.  Bummer.
53                                         */
54  #define PSS_STYLE 2                    /* Does MSVC compile for anything
55                                            other than Windows/DOS targets?
56                                         */
57 #endif
58 //typedef signed char int8;
59 //typedef signed short int16;
60 //typedef signed long int32;
61 #define byte uint8
62 #define word uint16
63
64 #ifdef __GNUC__
65  #ifdef C80x86
66   #define FASTAPASS(x) __attribute__((regparm(x)))
67   #define FP_FASTAPASS FASTAPASS
68  #else
69   #define FASTAPASS(x)
70   #define FP_FASTAPASS(x)
71  #endif
72 #else
73  #define FP_FASTAPASS(x)
74  #define FASTAPASS(x) __fastcall
75 #endif
76
77 typedef void FP_FASTAPASS(2) (*writefunc)(uint32 A, uint8 V);
78 typedef uint8 FP_FASTAPASS(1) (*readfunc)(uint32 A);
79 #endif