mirror of
https://github.com/holub/mame
synced 2025-05-22 21:58:57 +03:00
Oops, missed a file.
This commit is contained in:
parent
e47035e834
commit
6c33d53f7a
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
36
src/mame/includes/cischeat.h
Normal file
36
src/mame/includes/cischeat.h
Normal 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 );
|
Loading…
Reference in New Issue
Block a user