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

« back to all changes in this revision

Viewing changes to src/mame/includes/dcon.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 dcon_state : public driver_device
 
2
{
 
3
public:
 
4
        dcon_state(running_machine &machine, const driver_device_config_base &config)
 
5
                : driver_device(machine, config) { }
 
6
 
 
7
        UINT16 *m_back_data;
 
8
        UINT16 *m_fore_data;
 
9
        UINT16 *m_mid_data;
 
10
        UINT16 *m_scroll_ram;
 
11
        UINT16 *m_textram;
 
12
        tilemap_t *m_background_layer;
 
13
        tilemap_t *m_foreground_layer;
 
14
        tilemap_t *m_midground_layer;
 
15
        tilemap_t *m_text_layer;
 
16
        UINT16 m_enable;
 
17
        int m_gfx_bank_select;
 
18
        int m_last_gfx_bank;
 
19
        UINT16 *m_spriteram;
 
20
        size_t m_spriteram_size;
 
21
};
 
22
 
 
23
 
1
24
/*----------- defined in video/dcon.c -----------*/
2
25
 
3
 
extern UINT16 *dcon_back_data,*dcon_fore_data,*dcon_mid_data,*dcon_scroll_ram,*dcon_textram;
4
 
 
5
26
WRITE16_HANDLER( dcon_gfxbank_w );
6
27
WRITE16_HANDLER( dcon_background_w );
7
28
WRITE16_HANDLER( dcon_foreground_w );
11
32
READ16_HANDLER( dcon_control_r );
12
33
 
13
34
VIDEO_START( dcon );
14
 
VIDEO_UPDATE( dcon );
15
 
VIDEO_UPDATE( sdgndmps );
 
35
SCREEN_UPDATE( dcon );
 
36
SCREEN_UPDATE( sdgndmps );