Oops, missed a file.

This commit is contained in:
Aaron Giles 2009-09-10 08:41:09 +00:00
parent e47035e834
commit 6c33d53f7a
2 changed files with 37 additions and 0 deletions

1
.gitattributes vendored
View File

@ -2337,6 +2337,7 @@ src/mame/includes/changela.h svneol=native#text/plain
src/mame/includes/cidelsa.h svneol=native#text/plain
src/mame/includes/cinemat.h svneol=native#text/plain
src/mame/includes/circus.h svneol=native#text/plain
src/mame/includes/cischeat.h svneol=native#text/plain
src/mame/includes/cloak.h svneol=native#text/plain
src/mame/includes/cloud9.h svneol=native#text/plain
src/mame/includes/cninja.h svneol=native#text/plain

View File

@ -0,0 +1,36 @@
/*----------- defined in drivers/cischeat.c -----------*/
extern UINT16 scudhamm_motor_command;
READ16_HANDLER( scudhamm_motor_pos_r );
READ16_HANDLER( scudhamm_motor_status_r );
READ16_HANDLER( scudhamm_analog_r );
/*----------- defined in video/cischeat.c -----------*/
extern UINT16 *cischeat_roadram[2];
extern UINT16 *f1gpstr2_ioready;
READ16_HANDLER( bigrun_vregs_r );
READ16_HANDLER( cischeat_vregs_r );
READ16_HANDLER( f1gpstar_vregs_r );
READ16_HANDLER( f1gpstr2_vregs_r );
READ16_HANDLER( wildplt_vregs_r );
WRITE16_HANDLER( bigrun_vregs_w );
WRITE16_HANDLER( cischeat_vregs_w );
WRITE16_HANDLER( f1gpstar_vregs_w );
WRITE16_HANDLER( f1gpstr2_vregs_w );
WRITE16_HANDLER( scudhamm_vregs_w );
CUSTOM_INPUT( cischeat_shift_r );
VIDEO_START( bigrun );
VIDEO_START( cischeat );
VIDEO_START( f1gpstar );
VIDEO_UPDATE( bigrun );
VIDEO_UPDATE( cischeat );
VIDEO_UPDATE( f1gpstar );
VIDEO_UPDATE( scudhamm );