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

« back to all changes in this revision

Viewing changes to src/mame/includes/exzisus.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:
 
1
class exzisus_state : public driver_device
 
2
{
 
3
public:
 
4
        exzisus_state(running_machine &machine, const driver_device_config_base &config)
 
5
                : driver_device(machine, config) { }
 
6
 
 
7
        UINT8 *m_sharedram_ab;
 
8
        UINT8 *m_sharedram_ac;
 
9
        int m_cpua_bank;
 
10
        int m_cpub_bank;
 
11
        UINT8 *m_videoram0;
 
12
        UINT8 *m_videoram1;
 
13
        UINT8 *m_objectram0;
 
14
        UINT8 *m_objectram1;
 
15
        size_t m_objectram_size0;
 
16
        size_t m_objectram_size1;
 
17
};
 
18
 
 
19
 
1
20
/*----------- defined in video/exzisus.c -----------*/
2
21
 
3
 
extern UINT8 *exzisus_videoram0;
4
 
extern UINT8 *exzisus_videoram1;
5
 
extern UINT8 *exzisus_objectram0;
6
 
extern UINT8 *exzisus_objectram1;
7
 
extern size_t  exzisus_objectram_size0;
8
 
extern size_t  exzisus_objectram_size1;
9
 
 
10
22
READ8_HANDLER( exzisus_videoram_0_r );
11
23
READ8_HANDLER( exzisus_videoram_1_r );
12
24
READ8_HANDLER( exzisus_objectram_0_r );
16
28
WRITE8_HANDLER( exzisus_objectram_0_w );
17
29
WRITE8_HANDLER( exzisus_objectram_1_w );
18
30
 
19
 
VIDEO_UPDATE( exzisus );
 
31
SCREEN_UPDATE( exzisus );
20
32
 
21
33