summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/orao.h
blob: e253e87fcb1fc2c32e7baf79c8f00ca892b91c2b (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
33
34
35
36
37
38
39
40
41
/*****************************************************************************
 *
 * includes/orao.h
 *
 ****************************************************************************/

#ifndef ORAO_H_
#define ORAO_H_


class orao_state : public driver_device
{
public:
	orao_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) ,
		m_memory(*this, "memory"),
		m_video_ram(*this, "video_ram"){ }

	required_shared_ptr<UINT8> m_memory;
	required_shared_ptr<UINT8> m_video_ram;
	DECLARE_READ8_MEMBER(orao_io_r);
	DECLARE_WRITE8_MEMBER(orao_io_w);
	DECLARE_DRIVER_INIT(orao);
	DECLARE_DRIVER_INIT(orao103);
};


/*----------- defined in machine/orao.c -----------*/

extern MACHINE_RESET( orao );




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

extern VIDEO_START( orao );
extern SCREEN_UPDATE_IND16( orao );


#endif /* ORAO_H_ */