~ubuntu-branches/debian/sid/mame/sid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Emmanuel Kasper, Félix Arreola Rodríguez, Jordi Mallach
  • Date: 2011-05-11 21:06:50 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110511210650-jizvh8a6x117y9hr
Tags: 0.142-1
[ Emmanuel Kasper ]
* New upstream release
* Set NOWERROR=1 to allow compiling with gcc-4.6
* Remove fix_powerpc_build.patch, as upstream has taken it in this release
* Add gnome-video-arcade front end as a suggested package

[ Félix Arreola Rodríguez ]
* Add kfreebsd-build.patch to quilt series, to fix build on kfreebsd

[ Jordi Mallach ]
* Remove unneeded and bogus addition of --with-quilt to the dh invocation.
* Add Cesare Falco (long time Ubuntu maintainer) to Uploaders, and wrap
  them into multiple lines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
class pacland_state : public driver_device
 
2
{
 
3
public:
 
4
        pacland_state(running_machine &machine, const driver_device_config_base &config)
 
5
                : driver_device(machine, config) { }
 
6
 
 
7
        UINT8 *m_videoram;
 
8
        UINT8 *m_videoram2;
 
9
        UINT8 *m_spriteram;
 
10
        UINT8 m_palette_bank;
 
11
        const UINT8 *m_color_prom;
 
12
        tilemap_t *m_bg_tilemap;
 
13
        tilemap_t *m_fg_tilemap;
 
14
        bitmap_t *m_fg_bitmap;
 
15
        UINT32 *m_transmask[3];
 
16
        UINT16 m_scroll0;
 
17
        UINT16 m_scroll1;
 
18
};
 
19
 
 
20
 
1
21
/*----------- defined in video/pacland.c -----------*/
2
22
 
3
 
extern UINT8 *pacland_videoram,*pacland_videoram2,*pacland_spriteram;
4
 
 
5
23
WRITE8_HANDLER( pacland_videoram_w );
6
24
WRITE8_HANDLER( pacland_videoram2_w );
7
25
WRITE8_HANDLER( pacland_scroll0_w );
10
28
 
11
29
PALETTE_INIT( pacland );
12
30
VIDEO_START( pacland );
13
 
VIDEO_UPDATE( pacland );
 
31
SCREEN_UPDATE( pacland );