diff options
author | 2009-09-10 08:41:09 +0000 | |
---|---|---|
committer | 2009-09-10 08:41:09 +0000 | |
commit | 6c33d53f7ac9b64ad2221a7488cae51c1c62b047 (patch) | |
tree | 14b49a68facfccbdc3100adbeedb47fe9f302ba0 | |
parent | e47035e8342cd2532358a6af3f7314caf42ba292 (diff) |
Oops, missed a file.mame0134
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | src/mame/includes/cischeat.h | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index f87db013d34..de54bdd653b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/src/mame/includes/cischeat.h b/src/mame/includes/cischeat.h new file mode 100644 index 00000000000..cb7b725e043 --- /dev/null +++ b/src/mame/includes/cischeat.h @@ -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 ); |