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

« back to all changes in this revision

Viewing changes to src/mame/includes/taitoair.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:
24
24
                : driver_device(machine, config) { }
25
25
 
26
26
        /* memory pointers */
27
 
        UINT16 *      m68000_mainram;
28
 
        UINT16 *      line_ram;
29
 
        UINT16 *      dsp_ram;  /* Shared 68000/TMS32025 RAM */
30
 
        UINT16 *      paletteram;
 
27
        UINT16 *      m_m68000_mainram;
 
28
        UINT16 *      m_line_ram;
 
29
        UINT16 *      m_dsp_ram;        /* Shared 68000/TMS32025 RAM */
 
30
        UINT16 *      m_paletteram;
31
31
 
32
32
        /* video-related */
33
 
        taitoair_poly  q;
 
33
        taitoair_poly  m_q;
34
34
 
35
35
        /* misc */
36
 
        int           dsp_hold_signal;
37
 
        INT32         banknum;
 
36
        int           m_dsp_hold_signal;
 
37
        INT32         m_banknum;
38
38
 
39
39
        /* devices */
40
 
        device_t *audiocpu;
41
 
        device_t *dsp;
42
 
        device_t *tc0080vco;
 
40
        device_t *m_audiocpu;
 
41
        device_t *m_dsp;
 
42
        device_t *m_tc0080vco;
43
43
};
44
44
 
45
45
 
46
46
/*----------- defined in video/taitoair.c -----------*/
47
47
 
48
 
VIDEO_UPDATE( taitoair );
 
48
SCREEN_UPDATE( taitoair );