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

« back to all changes in this revision

Viewing changes to src/mame/includes/srmp2.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
struct iox_t
 
2
{
 
3
        int reset,ff_event,ff_1,protcheck[4],protlatch[4];
 
4
        UINT8 data;
 
5
        UINT8 mux;
 
6
        UINT8 ff;
 
7
};
 
8
 
1
9
class srmp2_state : public driver_device
2
10
{
3
11
public:
4
12
        srmp2_state(running_machine &machine, const driver_device_config_base &config)
5
13
                : driver_device(machine, config) { }
6
14
 
7
 
        int color_bank;
8
 
        int gfx_bank;
9
 
 
10
 
        int adpcm_bank;
11
 
        int adpcm_data;
12
 
        UINT32 adpcm_sptr;
13
 
        UINT32 adpcm_eptr;
14
 
 
15
 
        int port_select;
 
15
        int m_color_bank;
 
16
        int m_gfx_bank;
 
17
 
 
18
        int m_adpcm_bank;
 
19
        int m_adpcm_data;
 
20
        UINT32 m_adpcm_sptr;
 
21
        UINT32 m_adpcm_eptr;
 
22
 
 
23
        int m_port_select;
16
24
 
17
25
        union
18
26
        {
19
27
                UINT8 *u8;
20
28
                UINT16 *u16;
21
 
        } spriteram1, spriteram2, spriteram3;
 
29
        } m_spriteram1, m_spriteram2, m_spriteram3;
 
30
 
 
31
        iox_t m_iox;
22
32
};
23
33
 
24
34
 
25
35
/*----------- defined in video/srmp2.c -----------*/
26
36
 
27
37
PALETTE_INIT( srmp2 );
28
 
VIDEO_UPDATE( srmp2 );
 
38
SCREEN_UPDATE( srmp2 );
29
39
PALETTE_INIT( srmp3 );
30
 
VIDEO_UPDATE( srmp3 );
31
 
VIDEO_UPDATE( mjyuugi );
 
40
SCREEN_UPDATE( srmp3 );
 
41
SCREEN_UPDATE( mjyuugi );