summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/thedeep.h
blob: 50e67b7e435694a92ab55ce0e7134620a72fd7f7 (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
class thedeep_state : public driver_device
{
public:
	thedeep_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) { }

	UINT8 *m_spriteram;
	size_t m_spriteram_size;
	int m_nmi_enable;
	UINT8 m_protection_command;
	UINT8 m_protection_data;
	int m_protection_index;
	int m_protection_irq;
	int m_rombank;
	UINT8 *m_vram_0;
	UINT8 *m_vram_1;
	UINT8 *m_scroll;
	UINT8 *m_scroll2;
	tilemap_t *m_tilemap_0;
	tilemap_t *m_tilemap_1;
};


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

WRITE8_HANDLER( thedeep_vram_0_w );
WRITE8_HANDLER( thedeep_vram_1_w );

PALETTE_INIT( thedeep );
VIDEO_START( thedeep );
SCREEN_UPDATE( thedeep );