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

« back to all changes in this revision

Viewing changes to src/mame/includes/twin16.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:
2
2
 
3
3
extern UINT16 twin16_custom_video;
4
4
extern UINT16 *twin16_gfx_rom;
5
 
extern UINT16 *twin16_videoram2;
 
5
extern UINT16 *twin16_text_ram;
6
6
extern UINT16 *twin16_sprite_gfx_ram;
7
7
extern UINT16 *twin16_tile_gfx_ram;
8
8
int twin16_spriteram_process_enable( void );
10
10
 
11
11
/*----------- defined in video/twin16.c -----------*/
12
12
 
13
 
WRITE16_HANDLER( twin16_videoram2_w );
 
13
WRITE16_HANDLER( twin16_text_ram_w );
14
14
WRITE16_HANDLER( twin16_paletteram_word_w );
15
15
WRITE16_HANDLER( fround_gfx_bank_w );
16
16
WRITE16_HANDLER( twin16_video_register_w );
 
17
READ16_HANDLER( twin16_sprite_status_r );
17
18
 
18
19
VIDEO_START( twin16 );
19
 
VIDEO_START( fround );
20
20
VIDEO_UPDATE( twin16 );
21
21
VIDEO_EOF( twin16 );
22
22
 
23
 
void twin16_spriteram_process( void );
 
23
void twin16_spriteram_process( running_machine* );