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

    Atari Escape hardware

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

#include "machine/atarigen.h"

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

	int 			m_screen_intensity;
	int 			m_video_disable;
	UINT16 *		m_sync_data;
	int			m_last_offset;
};


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

VIDEO_START( eprom );
SCREEN_UPDATE( eprom );

VIDEO_START( guts );
SCREEN_UPDATE( guts );

void eprom_scanline_update(screen_device &screen, int scanline);