mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
missing from last commit
This commit is contained in:
parent
61c0f93573
commit
5dcec26757
2 changed files with 27 additions and 0 deletions
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -2347,6 +2347,7 @@ src/mame/includes/gstriker.h svneol=native#text/plain
|
|||
src/mame/includes/harddriv.h svneol=native#text/plain
|
||||
src/mame/includes/hitme.h svneol=native#text/plain
|
||||
src/mame/includes/homedata.h svneol=native#text/plain
|
||||
src/mame/includes/hyprduel.h svneol=native#text/plain
|
||||
src/mame/includes/inufuku.h svneol=native#text/plain
|
||||
src/mame/includes/iqblock.h svneol=native#text/plain
|
||||
src/mame/includes/iremipt.h svneol=native#text/plain
|
||||
|
|
26
src/mame/includes/hyprduel.h
Normal file
26
src/mame/includes/hyprduel.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
#define RASTER_LINES 262
|
||||
#define FIRST_VISIBLE_LINE 0
|
||||
#define LAST_VISIBLE_LINE 223
|
||||
|
||||
/*----------- defined in drivers/hyprduel.c -----------*/
|
||||
|
||||
extern int rastersplit;
|
||||
|
||||
/*----------- defined in video/hyprduel.c -----------*/
|
||||
|
||||
extern UINT16 *hyprduel_videoregs;
|
||||
extern UINT16 *hyprduel_screenctrl;
|
||||
extern UINT16 *hyprduel_tiletable;
|
||||
extern size_t hyprduel_tiletable_size;
|
||||
extern UINT16 *hyprduel_vram_0, *hyprduel_vram_1, *hyprduel_vram_2;
|
||||
extern UINT16 *hyprduel_window;
|
||||
|
||||
WRITE16_HANDLER( hyprduel_paletteram_w );
|
||||
WRITE16_HANDLER( hyprduel_window_w );
|
||||
WRITE16_HANDLER( hyprduel_vram_0_w );
|
||||
WRITE16_HANDLER( hyprduel_vram_1_w );
|
||||
WRITE16_HANDLER( hyprduel_vram_2_w );
|
||||
WRITE16_HANDLER( hypr_scrollreg_w );
|
||||
WRITE16_HANDLER( hypr_scrollreg_init_w );
|
||||
VIDEO_START( hyprduel_14220 );
|
||||
VIDEO_UPDATE( hyprduel );
|
Loading…
Reference in a new issue