frameskip, cleanups
[fceu.git] / types.h
CommitLineData
c62d2810 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
25typedef unsigned char uint8;
26typedef unsigned short uint16;
27typedef unsigned long uint32;
28
29#ifdef __GNUC__
30 typedef unsigned long long uint64;
31 typedef long long int64;
32 #define INLINE inline
33 #define GINLINE inline
34#elif MSVC
35 typedef __int64 int64;
36 typedef unsigned __int64 uint64;
37 #define INLINE __inline
38 #define GINLINE /* Can't declare a function INLINE
39 and global in MSVC. Bummer.
40 */
41 #define PSS_STYLE 2 /* Does MSVC compile for anything
42 other than Windows/DOS targets?
43 */
44#endif
45typedef signed char int8;
46typedef signed short int16;
47typedef signed long int32;
48#define byte uint8
49#define word uint16
50
51#ifdef __GNUC__
52 #ifdef C80x86
53 #define FASTAPASS(x) __attribute__((regparm(x)))
54 #define FP_FASTAPASS FASTAPASS
55 #else
56 #define FASTAPASS(x)
57 #define FP_FASTAPASS(x)
58 #endif
59#else
60 #define FP_FASTAPASS(x)
61 #define FASTAPASS(x) __fastcall
62#endif
63
64typedef void FP_FASTAPASS(2) (*writefunc)(uint32 A, uint8 V);
65typedef uint8 FP_FASTAPASS(1) (*readfunc)(uint32 A);
66#endif