summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/usgames.h
blob: 62109c2b541b13429b00595bfdb5216fd1433f3b (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
class usgames_state : public driver_device
{
public:
	usgames_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) ,
		m_videoram(*this, "videoram"),
		m_charram(*this, "charram"){ }

	required_shared_ptr<UINT8> m_videoram;
	required_shared_ptr<UINT8> m_charram;
	tilemap_t *m_tilemap;
	DECLARE_WRITE8_MEMBER(usgames_rombank_w);
	DECLARE_WRITE8_MEMBER(lamps1_w);
	DECLARE_WRITE8_MEMBER(lamps2_w);
	DECLARE_WRITE8_MEMBER(usgames_videoram_w);
	DECLARE_WRITE8_MEMBER(usgames_charram_w);
	TILE_GET_INFO_MEMBER(get_usgames_tile_info);
};


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

VIDEO_START( usgames );
PALETTE_INIT( usgames );
SCREEN_UPDATE_IND16( usgames );