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

« back to all changes in this revision

Viewing changes to mess/src/mame/includes/dassault.h

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Jordi Mallach, Emmanuel Kasper
  • Date: 2011-12-19 22:56:27 UTC
  • mfrom: (0.1.2)
  • Revision ID: package-import@ubuntu.com-20111219225627-ub5oga1oys4ogqzm
Tags: 0.144-1
[ Jordi Mallach ]
* Fix syntax errors in DEP5 copyright file (lintian).
* Use a versioned copyright Format specification field.
* Update Vcs-* URLs.
* Move transitional packages to the new metapackages section, and make
  them priority extra.
* Remove references to GNU/Linux and MESS sources from copyright.
* Add build variables for s390x.
* Use .xz tarballs as it cuts 4MB for the upstream sources.
* Add nplayers.ini as a patch. Update copyright file to add CC-BY-SA-3.0.

[ Emmanuel Kasper ]
* New upstream release. Closes: #651538.
* Add Free Desktop compliant png icons of various sizes taken from
  the hydroxygen iconset
* Mess is now built from a new source package, to avoid possible source
  incompatibilities between mame and the mess overlay.
* Mame-tools are not built from the mame source package anymore, but
  from the mess source package

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*************************************************************************
2
 
 
3
 
    Desert Assault
4
 
 
5
 
*************************************************************************/
6
 
 
7
 
#include "sound/okim6295.h"
8
 
#include "video/deco16ic.h"
9
 
#include "video/decocomn.h"
10
 
 
11
 
class dassault_state : public driver_device
12
 
{
13
 
public:
14
 
        dassault_state(const machine_config &mconfig, device_type type, const char *tag)
15
 
                : driver_device(mconfig, type, tag),
16
 
                  m_maincpu(*this, "maincpu"),
17
 
                  m_audiocpu(*this, "audiocpu"),
18
 
                  m_subcpu(*this, "sub"),
19
 
                  m_decocomn(*this, "deco_common"),
20
 
                  m_deco_tilegen1(*this, "tilegen1"),
21
 
                  m_deco_tilegen2(*this, "tilegen2"),
22
 
                  m_oki2(*this, "oki2") { }
23
 
 
24
 
        /* memory pointers */
25
 
        UINT16 *  m_pf2_rowscroll;
26
 
        UINT16 *  m_pf4_rowscroll;
27
 
        UINT16 *  m_ram;
28
 
        UINT16 *  m_ram2;
29
 
        UINT16 *  m_shared_ram;
30
 
 
31
 
        /* devices */
32
 
        required_device<cpu_device> m_maincpu;
33
 
        required_device<cpu_device> m_audiocpu;
34
 
        required_device<cpu_device> m_subcpu;
35
 
        required_device<decocomn_device> m_decocomn;
36
 
        required_device<deco16ic_device> m_deco_tilegen1;
37
 
        required_device<deco16ic_device> m_deco_tilegen2;
38
 
        required_device<okim6295_device> m_oki2;
39
 
};
40
 
 
41
 
 
42
 
 
43
 
/*----------- defined in video/dassault.c -----------*/
44
 
 
45
 
SCREEN_UPDATE( dassault );