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

« back to all changes in this revision

Viewing changes to mess/src/mame/includes/taito_z.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
 
 
4
 
    Taito Z system
5
 
 
6
 
*************************************************************************/
7
 
 
8
 
#include "machine/eeprom.h"
9
 
 
10
 
class taitoz_state : public driver_device
11
 
{
12
 
public:
13
 
        taitoz_state(const machine_config &mconfig, device_type type, const char *tag)
14
 
                : driver_device(mconfig, type, tag) { }
15
 
 
16
 
        /* memory pointers */
17
 
        UINT16 *    m_spriteram;
18
 
//  UINT16 *    paletteram;    // currently this uses generic palette handling
19
 
        offs_t      m_spriteram_size;
20
 
 
21
 
        /* video-related */
22
 
        int         m_sci_spriteframe;
23
 
        int         m_road_palbank;
24
 
 
25
 
        /* misc */
26
 
        int         m_chasehq_lamps;
27
 
        INT32       m_banknum;
28
 
        UINT16      m_cpua_ctrl;
29
 
        INT32       m_sci_int6;
30
 
        INT32       m_dblaxle_int6;
31
 
        INT32       m_ioc220_port;
32
 
        UINT16      m_eep_latch;
33
 
 
34
 
//  UINT8       pandata[4];
35
 
 
36
 
        /* devices */
37
 
        device_t *m_maincpu;
38
 
        device_t *m_audiocpu;
39
 
        device_t *m_subcpu;
40
 
        eeprom_device *m_eeprom;
41
 
        device_t *m_tc0480scp;
42
 
        device_t *m_tc0150rod;
43
 
        device_t *m_tc0100scn;
44
 
        device_t *m_tc0220ioc;
45
 
        device_t *m_tc0140syt;
46
 
 
47
 
        /* dblaxle motor flag */
48
 
        int         m_dblaxle_vibration;
49
 
};
50
 
 
51
 
/*----------- defined in video/taito_z.c -----------*/
52
 
 
53
 
WRITE16_HANDLER( contcirc_out_w );
54
 
READ16_HANDLER ( sci_spriteframe_r );
55
 
WRITE16_HANDLER( sci_spriteframe_w );
56
 
 
57
 
VIDEO_START( taitoz );
58
 
 
59
 
SCREEN_UPDATE( contcirc );
60
 
SCREEN_UPDATE( chasehq );
61
 
SCREEN_UPDATE( bshark );
62
 
SCREEN_UPDATE( sci );
63
 
SCREEN_UPDATE( aquajack );
64
 
SCREEN_UPDATE( spacegun );
65
 
SCREEN_UPDATE( dblaxle );