summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/arcadecl.h
blob: 7d2750d253a0e9fd9e5a6d75ccf8cf9a4618f2c1 (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
/*************************************************************************

    Atari Arcade Classics hardware (prototypes)

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


#include "machine/atarigen.h"

class arcadecl_state : public atarigen_state
{
public:
	arcadecl_state(const machine_config &mconfig, device_type type, const char *tag)
		: atarigen_state(mconfig, type, tag),
		  m_bitmap(*this, "bitmap") { }

	required_shared_ptr<UINT16> m_bitmap;
	UINT8			m_has_mo;
	DECLARE_WRITE16_MEMBER(latch_w);
	DECLARE_DRIVER_INIT(sparkz);
};

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

VIDEO_START( arcadecl );
SCREEN_UPDATE_IND16( arcadecl );