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

	UINT8 *m_scrollram;
	UINT8 *m_videoram;
	UINT8 *m_colorram;

	int m_sn76496_latch;
	int m_sn76496_select;
};


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

WRITE8_HANDLER( spcforce_flip_screen_w );
SCREEN_UPDATE( spcforce );