~ubuntu-branches/ubuntu/raring/mame/raring-proposed

« back to all changes in this revision

Viewing changes to mess/src/mame/includes/metalmx.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
 
#include "cpu/adsp2100/adsp2100.h"
2
 
#include "cpu/m68000/m68000.h"
3
 
#include "cpu/tms34010/tms34010.h"
4
 
#include "cpu/dsp32/dsp32.h"
5
 
 
6
 
class metalmx_state : public driver_device
7
 
{
8
 
public:
9
 
        metalmx_state(const machine_config &mconfig, device_type type, const char *tag)
10
 
                : driver_device(mconfig, type, tag),
11
 
                  m_maincpu(*this, "maincpu"),
12
 
                  m_gsp(*this, "gsp"),
13
 
                  m_adsp(*this, "adsp"),
14
 
                  m_dsp32c_1(*this, "dsp32c_1"),
15
 
                  m_dsp32c_2(*this, "dsp32c_2") { }
16
 
 
17
 
        required_device<m68ec020_device> m_maincpu;
18
 
        required_device<tms34020_device> m_gsp;
19
 
        required_device<adsp2105_device> m_adsp;
20
 
        required_device<dsp32c_device> m_dsp32c_1;
21
 
        required_device<dsp32c_device> m_dsp32c_2;
22
 
 
23
 
        UINT16                          *m_gsp_dram;
24
 
        UINT16                          *m_gsp_vram;
25
 
 
26
 
        UINT32                          *m_adsp_internal_program_ram;
27
 
};