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

« back to all changes in this revision

Viewing changes to src/mame/video/konamiic.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:
8
8
#define MAX_K007121 2
9
9
extern UINT8 K007121_ctrlram[MAX_K007121][8];
10
10
 
11
 
void K007121_ctrl_w(int chip,int offset,int data);
 
11
void K007121_ctrl_w(running_machine *machine, int chip,int offset,int data);
12
12
WRITE8_HANDLER( K007121_ctrl_0_w );
13
13
WRITE8_HANDLER( K007121_ctrl_1_w );
14
 
void K007121_sprites_draw(int chip,bitmap_t *bitmap,gfx_element **gfxs, colortable_t *ctable,
15
 
                                                  const rectangle *cliprect, const UINT8 *source,int base_color,
 
14
void K007121_sprites_draw(int chip,bitmap_t *bitmap,const rectangle *cliprect, gfx_element **gfxs, colortable_t *ctable,
 
15
                                                  const UINT8 *source,int base_color,
16
16
                                                  int global_x_offset,int bank_base, UINT32 pri_mask);
17
17
 
18
18
 
223
223
 
224
224
extern UINT16 *K053936_0_ctrl,*K053936_0_linectrl;
225
225
extern UINT16 *K053936_1_ctrl,*K053936_1_linectrl;
226
 
void K053936_0_zoom_draw(bitmap_t *bitmap,const rectangle *cliprect,tilemap *tmap,int flags,UINT32 priority);
227
 
void K053936_1_zoom_draw(bitmap_t *bitmap,const rectangle *cliprect,tilemap *tmap,int flags,UINT32 priority);
 
226
void K053936_0_zoom_draw(bitmap_t *bitmap,const rectangle *cliprect,tilemap *tmap,int flags,UINT32 priority, int glfgreat_hack);
 
227
void K053936_1_zoom_draw(bitmap_t *bitmap,const rectangle *cliprect,tilemap *tmap,int flags,UINT32 priority, int glfgreat_hack);
228
228
void K053936_wraparound_enable(int chip, int status);
229
229
void K053936_set_offset(int chip, int xoffs, int yoffs);
230
230