summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/taito_h.h
blob: 2e81a887648bdef081950fd9a6ac2f99bd1bb9fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*************************************************************************

    Taito H system

*************************************************************************/

class taitoh_state : public driver_device
{
public:
	taitoh_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) ,
		m_m68000_mainram(*this, "m68000_mainram"){ }

	/* memory pointers */
	required_shared_ptr<UINT16> m_m68000_mainram;
//  UINT16 *    paletteram;    // currently this uses generic palette handling

	/* misc */
	INT32       m_banknum;

	/* devices */
	cpu_device *m_maincpu;
	cpu_device *m_audiocpu;
	device_t *m_tc0080vco;
	device_t *m_tc0220ioc;
	DECLARE_READ8_MEMBER(syvalion_input_bypass_r);
	DECLARE_WRITE8_MEMBER(sound_bankswitch_w);
	virtual void machine_start();
	virtual void machine_reset();
};

/*----------- defined in video/taito_h.c -----------*/

SCREEN_UPDATE_IND16( syvalion );
SCREEN_UPDATE_IND16( recordbr );
SCREEN_UPDATE_IND16( dleague );