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

« back to all changes in this revision

Viewing changes to src/mame/includes/speedatk.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:
4
4
        speedatk_state(running_machine &machine, const driver_device_config_base &config)
5
5
                : driver_device(machine, config) { }
6
6
 
7
 
        UINT8 *videoram;
8
 
        UINT8 *colorram;
9
 
        tilemap_t *bg_tilemap;
 
7
        UINT8 *m_videoram;
 
8
        UINT8 *m_colorram;
 
9
        UINT8 m_crtc_vreg[0x100];
 
10
        UINT8 m_crtc_index;
 
11
        UINT8 m_flip_scr;
10
12
 
11
 
        UINT8 mux_data;
12
 
        UINT8 km_status;
13
 
        UINT8 coin_settings;
14
 
        UINT8 coin_impulse;
 
13
        UINT8 m_mux_data;
 
14
        UINT8 m_km_status;
 
15
        UINT8 m_coin_settings;
 
16
        UINT8 m_coin_impulse;
15
17
};
16
18
 
17
19
 
19
21
 
20
22
WRITE8_HANDLER( speedatk_videoram_w );
21
23
WRITE8_HANDLER( speedatk_colorram_w );
 
24
WRITE8_HANDLER( speedatk_6845_w );
22
25
PALETTE_INIT( speedatk );
23
26
VIDEO_START( speedatk );
24
 
VIDEO_UPDATE( speedatk );
 
27
SCREEN_UPDATE( speedatk );