2011-04-24 01:14:00 +00:00
|
|
|
/**
|
|
|
|
** Supermodel
|
|
|
|
** A Sega Model 3 Arcade Emulator.
|
2012-02-20 03:45:48 +00:00
|
|
|
** Copyright 2011-2012 Bart Trzynadlowski, Nik Henson
|
2011-04-24 01:14:00 +00:00
|
|
|
**
|
|
|
|
** This file is part of Supermodel.
|
|
|
|
**
|
|
|
|
** Supermodel 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 3 of the License, or (at your option)
|
|
|
|
** any later version.
|
|
|
|
**
|
|
|
|
** Supermodel 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 Supermodel. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Supermodel.h
|
|
|
|
*
|
|
|
|
* Program-wide header file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INCLUDED_SUPERMODEL_H
|
|
|
|
#define INCLUDED_SUPERMODEL_H
|
2021-11-22 17:15:06 +00:00
|
|
|
|
2011-08-19 20:43:07 +00:00
|
|
|
// Used throughout Supermodel
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
|
2011-04-24 01:14:00 +00:00
|
|
|
/******************************************************************************
|
|
|
|
Program-Wide Definitions
|
2021-04-14 01:20:45 +00:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "Version.h"
|
|
|
|
|
2016-03-21 23:20:32 +00:00
|
|
|
|
2011-04-24 01:14:00 +00:00
|
|
|
/******************************************************************************
|
|
|
|
OS-Dependent (OSD) Items
|
|
|
|
|
2011-08-19 20:43:07 +00:00
|
|
|
Everything here must be provided by the OSD layer. The following include files
|
|
|
|
must be located in the OSD directories for each port:
|
|
|
|
|
|
|
|
Types.h Defines fundamental data types.
|
|
|
|
OSDConfig.h COSDConfig class (OSD-specific configuration settings).
|
2011-04-24 01:14:00 +00:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
// stricmp() is non-standard, apparently...
|
|
|
|
#ifdef _MSC_VER // MS VisualC++
|
|
|
|
#define stricmp _stricmp
|
2022-07-17 18:23:11 +00:00
|
|
|
#elif defined(__GNUC__)
|
2011-04-24 01:14:00 +00:00
|
|
|
#define stricmp strcasecmp
|
|
|
|
#endif
|
|
|
|
|
2011-09-05 20:55:33 +00:00
|
|
|
// 32-bit rotate left
|
|
|
|
#ifdef _MSC_VER // MS VisualC++ - use VS intrinsic function _rotl
|
|
|
|
#define rotl(val, shift) val = _rotl(val, shift)
|
2022-07-17 18:23:11 +00:00
|
|
|
#elif defined(__GNUC__) // GCC should optimise following to asm
|
2011-09-05 20:55:33 +00:00
|
|
|
#define rotl(val, shift) val = (val>>shift)|(val<<(32-shift))
|
|
|
|
#endif
|
2011-08-19 20:43:07 +00:00
|
|
|
|
2011-04-24 01:14:00 +00:00
|
|
|
/*
|
|
|
|
* Fundamental Data Types:
|
|
|
|
*
|
|
|
|
* UINT64 Unsigned 64-bit integer.
|
|
|
|
* INT64 Signed 64-bit integer.
|
|
|
|
* UINT32 Unsigned 32-bit integer.
|
|
|
|
* INT32 Signed 32-bit integer.
|
|
|
|
* UINT16 Unsigned 16-bit integer.
|
|
|
|
* INT16 Signed 16-bit integer.
|
|
|
|
* UINT8 Unsigned 8-bit integer.
|
|
|
|
* INT8 Signed 8-bit integer.
|
|
|
|
* FLOAT32 Single-precision, 32-bit floating point number.
|
|
|
|
* FLOAT64 Double-precision, 64-bit floating point number.
|
2011-07-12 04:57:12 +00:00
|
|
|
*
|
2011-09-08 06:34:18 +00:00
|
|
|
* Boolean Values:
|
|
|
|
*
|
|
|
|
* OKAY 0
|
|
|
|
* FAIL 1
|
|
|
|
*
|
2011-07-12 04:57:12 +00:00
|
|
|
* Types.h is used within C++ and C modules, so it must NOT include any C++-
|
|
|
|
* specific stuff. Some modules may choose to include it directly rather than
|
|
|
|
* use Supermodel.h, so it must exist.
|
2011-04-24 01:14:00 +00:00
|
|
|
*/
|
2011-08-19 20:43:07 +00:00
|
|
|
#include "Types.h" // located in OSD/<port>/ directory
|
2011-07-20 21:14:00 +00:00
|
|
|
|
2021-11-22 17:15:06 +00:00
|
|
|
|
2011-08-19 20:43:07 +00:00
|
|
|
// Error logging interface
|
|
|
|
#include "OSD/Logger.h"
|
2011-04-24 01:14:00 +00:00
|
|
|
|
2011-08-01 19:12:44 +00:00
|
|
|
|
2011-04-24 01:14:00 +00:00
|
|
|
/******************************************************************************
|
|
|
|
Helpful Macros and Inlines
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FLIPENDIAN16(data):
|
|
|
|
* FLIPENDIAN32(data):
|
|
|
|
*
|
|
|
|
* Flips the endianness of the data (reverses bytes).
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* data Word or half-word to flip.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* Flipped word.
|
|
|
|
*/
|
|
|
|
static inline UINT16 FLIPENDIAN16(UINT16 d)
|
|
|
|
{
|
2011-08-01 19:12:44 +00:00
|
|
|
return ((d>>8) | (d<<8));
|
2011-04-24 01:14:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline UINT32 FLIPENDIAN32(UINT32 d)
|
|
|
|
{
|
2011-08-01 19:12:44 +00:00
|
|
|
return ((d>>24) | ((d<<8)&0x00FF0000) | ((d>>8)&0x0000FF00) | (d<<24));
|
2011-04-24 01:14:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // INCLUDED_SUPERMODEL_H
|