Files
ci-libretro-fceumm/src/fceu-types.h

97 lines
2.2 KiB
C
Raw Normal View History

/* FCE Ultra - NES/Famicom Emulator
*
* Copyright notice for this file:
* Copyright (C) 2001 Aaron Oneal
* Copyright (C) 2002 Xodnizel
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
2014-03-30 22:50:28 +02:00
#ifndef __FCEU_TYPES_H
#define __FCEU_TYPES_H
2014-04-15 01:59:54 -07:00
#ifdef __LIBRETRO__
#include <stdint.h>
#else
#include <inttypes.h>
2014-04-15 01:59:54 -07:00
#endif
typedef int8_t int8;
typedef int16_t int16;
typedef int32_t int32;
typedef uint8_t uint8;
typedef uint16_t uint16;
typedef uint32_t uint32;
#ifdef __GNUC__
typedef unsigned long long uint64;
typedef long long int64;
#define GINLINE inline
#elif MSVC
typedef __int64 int64;
typedef unsigned __int64 uint64;
#define GINLINE // Can't declare a function INLINE
// and global in MSVC. Bummer.
#define PSS_STYLE 2 // Does MSVC compile for anything
// other than Windows/DOS targets?
#else
typedef unsigned long long uint64;
typedef long long int64;
#endif
#if PSS_STYLE == 2
#define PSS "\\"
#define PS '\\'
#elif PSS_STYLE == 1
#define PSS "/"
#define PS '/'
#elif PSS_STYLE == 3
#define PSS "\\"
#define PS '\\'
#elif PSS_STYLE == 4
#define PSS ":"
#define PS ':'
#endif
#ifdef __GNUC__
#ifdef C80x86
#define FASTAPASS(x) __attribute__((regparm(x)))
#define FP_FASTAPASS FASTAPASS
#else
#define FASTAPASS(x)
#define FP_FASTAPASS(x)
#endif
#elif MSVC
#define FP_FASTAPASS(x)
#define FASTAPASS(x) __fastcall
#else
#define FP_FASTAPASS(x)
#define FASTAPASS(x)
#endif
typedef void (FP_FASTAPASS(2) *writefunc)(uint32 A, uint8 V);
typedef uint8 (FP_FASTAPASS(1) *readfunc)(uint32 A);
#endif