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

« back to all changes in this revision

Viewing changes to src/mame/includes/phoenix.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:
3
3
#include "sound/discrete.h"
4
4
 
5
5
 
 
6
class phoenix_state : public driver_device
 
7
{
 
8
public:
 
9
        phoenix_state(running_machine &machine, const driver_device_config_base &config)
 
10
                : driver_device(machine, config) { }
 
11
 
 
12
        UINT8 *m_videoram_pg[2];
 
13
        UINT8 m_videoram_pg_index;
 
14
        UINT8 m_palette_bank;
 
15
        UINT8 m_cocktail_mode;
 
16
        UINT8 m_pleiads_protection_question;
 
17
        UINT8 m_survival_protection_value;
 
18
        int m_survival_sid_value;
 
19
        tilemap_t *m_fg_tilemap;
 
20
        tilemap_t *m_bg_tilemap;
 
21
        UINT8 m_survival_input_latches[2];
 
22
        UINT8 m_survival_input_readc;
 
23
};
 
24
 
 
25
 
6
26
/*----------- video timing  -----------*/
7
27
 
8
28
#define MASTER_CLOCK                    XTAL_11MHz
32
52
PALETTE_INIT( survival );
33
53
PALETTE_INIT( pleiads );
34
54
VIDEO_START( phoenix );
35
 
VIDEO_UPDATE( phoenix );
 
55
SCREEN_UPDATE( phoenix );
36
56
 
37
57
WRITE8_HANDLER( phoenix_videoram_w );
38
58
WRITE8_HANDLER( phoenix_videoreg_w );