~ubuntu-branches/debian/wheezy/mame/wheezy

« back to all changes in this revision

Viewing changes to src/mame/includes/circusc.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:
11
11
                : driver_device(machine, config) { }
12
12
 
13
13
        /* memory pointers */
14
 
        UINT8 *        videoram;
15
 
        UINT8 *        colorram;
16
 
        UINT8 *        spriteram;
17
 
        UINT8 *        spriteram_2;
18
 
        UINT8 *        spritebank;
19
 
        UINT8 *        scroll;
20
 
        size_t         spriteram_size;
 
14
        UINT8 *        m_videoram;
 
15
        UINT8 *        m_colorram;
 
16
        UINT8 *        m_spriteram;
 
17
        UINT8 *        m_spriteram_2;
 
18
        UINT8 *        m_spritebank;
 
19
        UINT8 *        m_scroll;
 
20
        size_t         m_spriteram_size;
21
21
 
22
22
        /* video-related */
23
 
        tilemap_t        *bg_tilemap;
 
23
        tilemap_t        *m_bg_tilemap;
24
24
 
25
25
        /* sound-related */
26
 
        UINT8          sn_latch;
 
26
        UINT8          m_sn_latch;
27
27
 
28
28
        /* devices */
29
 
        cpu_device *audiocpu;
30
 
        device_t *sn1;
31
 
        device_t *sn2;
32
 
        device_t *dac;
33
 
        device_t *discrete;
 
29
        cpu_device *m_audiocpu;
 
30
        device_t *m_sn1;
 
31
        device_t *m_sn2;
 
32
        device_t *m_dac;
 
33
        device_t *m_discrete;
34
34
};
35
35
 
36
36
 
42
42
VIDEO_START( circusc );
43
43
WRITE8_HANDLER( circusc_flipscreen_w );
44
44
PALETTE_INIT( circusc );
45
 
VIDEO_UPDATE( circusc );
 
45
SCREEN_UPDATE( circusc );