summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/eolith.h
blob: 8e6eec31c3d48b67ddbd79cd28fcb19cf50e721b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class eolith_state : public driver_device
{
public:
	eolith_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) { }

	int m_coin_counter_bit;
	int m_buffer;
	UINT32 *m_vram;
};


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

READ32_HANDLER( eolith_vram_r );
WRITE32_HANDLER( eolith_vram_w );
VIDEO_START( eolith );
SCREEN_UPDATE( eolith );