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

    Atari Rampart hardware

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

#include "machine/atarigen.h"

class rampart_state : public atarigen_state
{
public:
	rampart_state(const machine_config &mconfig, device_type type, const char *tag)
		: atarigen_state(mconfig, type, tag) { }

	UINT16 *		m_bitmap;
	UINT8			m_has_mo;
};


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

VIDEO_START( rampart );
SCREEN_UPDATE( rampart );