summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/rltennis.h
blob: e66766090a3a3168f953721ce3b2adf2c0d3c6da (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include "sound/dac.h"


#define RLT_NUM_BLITTER_REGS	8
#define RLT_NUM_BITMAPS			8

class rltennis_state : public driver_device
{
public:
	rltennis_state(const machine_config &mconfig, device_type type, const char *tag)
	  : driver_device(mconfig, type, tag),
		m_data760000(0), m_data740000(0), m_dac_counter(0), m_sample_rom_offset_1(0), m_sample_rom_offset_2(0),
		m_offset_shift(0){ }

	cpu_device *m_maincpu;
	device_t *m_screen;

	UINT16 m_blitter[RLT_NUM_BLITTER_REGS];

	INT32 m_data760000;
	INT32 m_data740000;
	INT32 m_dac_counter;
	INT32 m_sample_rom_offset_1;
	INT32 m_sample_rom_offset_2;

	INT32 m_offset_shift;

	INT32 m_unk_counter;

	bitmap_ind16 *m_tmp_bitmap[RLT_NUM_BITMAPS];

	dac_device *m_dac_1;
	dac_device *m_dac_2;

	UINT8 *m_samples_1;
	UINT8 *m_samples_2;

	UINT8 *m_gfx;

	emu_timer *m_timer;

	DECLARE_READ16_MEMBER(rlt_io_r);
	DECLARE_WRITE16_MEMBER(rlt_snd1_w);
	DECLARE_WRITE16_MEMBER(rlt_snd2_w);
	DECLARE_WRITE16_MEMBER(rlt_blitter_w);
	virtual void machine_start();
	virtual void machine_reset();
	virtual void video_start();
};




SCREEN_UPDATE_IND16( rltennis );