~ubuntu-branches/ubuntu/lucid/sdlmame/lucid

« back to all changes in this revision

Viewing changes to src/mame/includes/cischeat.h

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2009-11-03 17:10:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091103171015-6hop4ory5lxnumpn
Tags: 0.135-0ubuntu1
* New upstream release - Closes (LP: #403212)
* debian/watch: unstable releases are no longer detected
* mame.ini: added the cheat subdirectories to cheatpath so zipped
  cheatfiles will be searched too
* renamed crsshair subdirectory to crosshair to reflect upstream change
* mame.ini: renamed references to crosshair subdirectory (see above)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*----------- defined in drivers/cischeat.c -----------*/
 
2
 
 
3
extern UINT16 scudhamm_motor_command;
 
4
 
 
5
READ16_HANDLER( scudhamm_motor_pos_r );
 
6
READ16_HANDLER( scudhamm_motor_status_r );
 
7
READ16_HANDLER( scudhamm_analog_r );
 
8
 
 
9
 
 
10
/*----------- defined in video/cischeat.c -----------*/
 
11
 
 
12
extern UINT16 *cischeat_roadram[2];
 
13
extern UINT16 *f1gpstr2_ioready;
 
14
 
 
15
READ16_HANDLER( bigrun_vregs_r );
 
16
READ16_HANDLER( cischeat_vregs_r );
 
17
READ16_HANDLER( f1gpstar_vregs_r );
 
18
READ16_HANDLER( f1gpstr2_vregs_r );
 
19
READ16_HANDLER( wildplt_vregs_r );
 
20
 
 
21
WRITE16_HANDLER( bigrun_vregs_w );
 
22
WRITE16_HANDLER( cischeat_vregs_w );
 
23
WRITE16_HANDLER( f1gpstar_vregs_w );
 
24
WRITE16_HANDLER( f1gpstr2_vregs_w );
 
25
WRITE16_HANDLER( scudhamm_vregs_w );
 
26
 
 
27
CUSTOM_INPUT( cischeat_shift_r );
 
28
 
 
29
VIDEO_START( bigrun );
 
30
VIDEO_START( cischeat );
 
31
VIDEO_START( f1gpstar );
 
32
 
 
33
VIDEO_UPDATE( bigrun );
 
34
VIDEO_UPDATE( cischeat );
 
35
VIDEO_UPDATE( f1gpstar );
 
36
VIDEO_UPDATE( scudhamm );