missing from last commit

This commit is contained in:
Yasuhiro Ogawa 2009-03-27 23:24:20 +00:00
parent 61c0f93573
commit 5dcec26757
2 changed files with 27 additions and 0 deletions

1
.gitattributes vendored
View file

@ -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

View 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 );