Previous 199869 Revisions Next

r26046 Friday 8th November, 2013 at 00:33:40 UTC by Dirk Best
Missed required change in shift for BIOS number
[/branches/alto2/src/emu]romload.h

branches/alto2/src/emu/romload.h
r26045r26046
11/*********************************************************************
22
3    romload.h
3   romload.h
44
5    ROM loading functions.
5   ROM loading functions.
66
7    Copyright Nicola Salmoria and the MAME Team.
8    Visit http://mamedev.org for licensing and usage restrictions.
7   Copyright Nicola Salmoria and the MAME Team.
8   Visit http://mamedev.org for licensing and usage restrictions.
99
1010*********************************************************************/
1111
r26045r26046
2121
2222
2323/***************************************************************************
24    CONSTANTS
24   CONSTANTS
2525***************************************************************************/
2626
2727/* ----- type constants ----- */
r26045r26046
116116
117117
118118/***************************************************************************
119    TYPE DEFINITIONS
119   TYPE DEFINITIONS
120120***************************************************************************/
121121
122122class machine_config;
r26045r26046
136136
137137
138138/***************************************************************************
139    MACROS
139   MACROS
140140***************************************************************************/
141141
142142/* ----- per-entry macros ----- */
r26045r26046
183183#define ROM_GETBITWIDTH(r)          (((ROM_GETFLAGS(r) & ROM_BITWIDTHMASK) >> 16) + 8 * ((ROM_GETFLAGS(r) & ROM_BITWIDTHMASK) == 0))
184184#define ROM_GETBITSHIFT(r)          ((ROM_GETFLAGS(r) & ROM_BITSHIFTMASK) >> 20)
185185#define ROM_INHERITSFLAGS(r)        ((ROM_GETFLAGS(r) & ROM_INHERITFLAGSMASK) == ROM_INHERITFLAGS)
186#define ROM_GETBIOSFLAGS(r)         ((ROM_GETFLAGS(r) & ROM_BIOSFLAGSMASK) >> 24)
186#define ROM_GETBIOSFLAGS(r)         ((ROM_GETFLAGS(r) & ROM_BIOSFLAGSMASK) >> 25)
187187
188188
189189/* ----- per-disk macros ----- */
r26045r26046
252252
253253
254254/***************************************************************************
255    FUNCTION PROTOTYPES
255   FUNCTION PROTOTYPES
256256***************************************************************************/
257257
258258

Previous 199869 Revisions Next


© 1997-2024 The MAME Team