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

« back to all changes in this revision

Viewing changes to src/mame/includes/moo.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
 
        UINT16 *    workram;
15
 
        UINT16 *    spriteram;
16
 
//  UINT16 *    paletteram;    // currently this uses generic palette handling
 
14
        UINT16 *    m_workram;
 
15
        UINT16 *    m_spriteram;
 
16
//  UINT16 *    m_paletteram;    // currently this uses generic palette handling
17
17
 
18
18
        /* video-related */
19
 
        int         sprite_colorbase;
20
 
        int         layer_colorbase[4], layerpri[3];
21
 
        int         alpha_enabled;
 
19
        int         m_sprite_colorbase;
 
20
        int         m_layer_colorbase[4];
 
21
        int         m_layerpri[3];
 
22
        int         m_alpha_enabled;
22
23
 
23
24
        /* misc */
24
 
        int         game_type;
25
 
        UINT16      protram[16];
26
 
        UINT16      cur_control2;
 
25
        int         m_game_type;
 
26
        UINT16      m_protram[16];
 
27
        UINT16      m_cur_control2;
27
28
 
28
29
        /* devices */
29
 
        device_t *maincpu;
30
 
        device_t *audiocpu;
31
 
        device_t *k054539;
32
 
        device_t *k053246;
33
 
        device_t *k053251;
34
 
        device_t *k056832;
35
 
        device_t *k054338;
 
30
        device_t *m_maincpu;
 
31
        device_t *m_audiocpu;
 
32
        device_t *m_k054539;
 
33
        device_t *m_k053246;
 
34
        device_t *m_k053251;
 
35
        device_t *m_k056832;
 
36
        device_t *m_k054338;
36
37
 
37
 
    emu_timer *dmaend_timer;
 
38
    emu_timer *m_dmaend_timer;
38
39
};
39
40
 
40
41
 
41
42
 
42
43
/*----------- defined in video/moo.c -----------*/
43
44
 
44
 
extern void moo_tile_callback(running_machine *machine, int layer, int *code, int *color, int *flags);
45
 
extern void moo_sprite_callback(running_machine *machine, int *code, int *color, int *priority_mask);
 
45
extern void moo_tile_callback(running_machine &machine, int layer, int *code, int *color, int *flags);
 
46
extern void moo_sprite_callback(running_machine &machine, int *code, int *color, int *priority_mask);
46
47
 
47
48
VIDEO_START(moo);
48
 
VIDEO_UPDATE(moo);
 
49
SCREEN_UPDATE(moo);