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

« back to all changes in this revision

Viewing changes to src/mame/includes/pastelg.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 pastelg_state : public driver_device
 
2
{
 
3
public:
 
4
        pastelg_state(running_machine &machine, const driver_device_config_base &config)
 
5
                : driver_device(machine, config) { }
 
6
 
 
7
        UINT8 m_mux_data;
 
8
        int m_blitter_destx;
 
9
        int m_blitter_desty;
 
10
        int m_blitter_sizex;
 
11
        int m_blitter_sizey;
 
12
        int m_blitter_src_addr;
 
13
        int m_gfxrom;
 
14
        int m_dispflag;
 
15
        int m_flipscreen;
 
16
        int m_blitter_direction_x;
 
17
        int m_blitter_direction_y;
 
18
        int m_palbank;
 
19
        UINT8 *m_videoram;
 
20
        UINT8 *m_clut;
 
21
        int m_flipscreen_old;
 
22
};
 
23
 
 
24
 
1
25
/*----------- defined in video/pastelg.c -----------*/
2
26
 
3
27
PALETTE_INIT( pastelg );
4
 
VIDEO_UPDATE( pastelg );
 
28
SCREEN_UPDATE( pastelg );
5
29
VIDEO_START( pastelg );
6
30
 
7
31
WRITE8_HANDLER( pastelg_clut_w );
11
35
WRITE8_HANDLER( pastelg_blitter_w );
12
36
READ8_HANDLER( threeds_rom_readback_r );
13
37
 
14
 
int pastelg_blitter_src_addr_r(void);
 
38
int pastelg_blitter_src_addr_r(address_space *space);