summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/seta2.h
blob: 5fad16543ef4029549caf92bad70027d21625a32 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
class seta2_state : public driver_device
{
public:
	seta2_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag),
		  m_maincpu(*this,"maincpu"),
		  m_nvram(*this, "nvram") ,
		m_spriteram(*this, "spriteram", 0),
		m_vregs(*this, "vregs", 0),
		m_coldfire_regs(*this, "coldfire_regs"),
		m_funcube_outputs(*this, "funcube_outputs"),
		m_funcube_leds(*this, "funcube_leds"){ }

	required_device<cpu_device> m_maincpu;
	optional_shared_ptr<UINT16> m_nvram;

	optional_shared_ptr<UINT16> m_spriteram;
	optional_shared_ptr<UINT16> m_vregs;
	optional_shared_ptr<UINT32> m_coldfire_regs;

	optional_shared_ptr<UINT8> m_funcube_outputs;
	optional_shared_ptr<UINT8> m_funcube_leds;
	int m_xoffset;
	int m_yoffset;
	int m_keyboard_row;

	UINT16 *m_buffered_spriteram;

	UINT64 m_funcube_coin_start_cycles;
	UINT8 m_funcube_hopper_motor;
	UINT8 m_funcube_press;

	UINT8 m_funcube_serial_fifo[4];
	UINT8 m_funcube_serial_count;

	DECLARE_WRITE16_MEMBER(seta2_vregs_w);
	DECLARE_WRITE16_MEMBER(seta2_sound_bank_w);
	DECLARE_WRITE16_MEMBER(grdians_lockout_w);
	DECLARE_READ16_MEMBER(mj4simai_p1_r);
	DECLARE_READ16_MEMBER(mj4simai_p2_r);
	DECLARE_WRITE16_MEMBER(mj4simai_keyboard_w);
	DECLARE_READ16_MEMBER(pzlbowl_protection_r);
	DECLARE_READ16_MEMBER(pzlbowl_coins_r);
	DECLARE_WRITE16_MEMBER(pzlbowl_coin_counter_w);
	DECLARE_WRITE16_MEMBER(reelquak_leds_w);
	DECLARE_WRITE16_MEMBER(reelquak_coin_w);
	DECLARE_WRITE16_MEMBER(samshoot_coin_w);
	DECLARE_READ32_MEMBER(funcube_nvram_dword_r);
	DECLARE_WRITE32_MEMBER(funcube_nvram_dword_w);
	DECLARE_WRITE16_MEMBER(spriteram16_word_w);
	DECLARE_READ16_MEMBER(spriteram16_word_r);
	DECLARE_WRITE32_MEMBER(coldfire_regs_w);
	DECLARE_READ32_MEMBER(coldfire_regs_r);
	DECLARE_READ32_MEMBER(funcube_debug_r);
	DECLARE_READ8_MEMBER(funcube_coins_r);
	DECLARE_READ8_MEMBER(funcube_serial_r);
	DECLARE_WRITE8_MEMBER(funcube_leds_w);
	DECLARE_READ8_MEMBER(funcube_outputs_r);
	DECLARE_WRITE8_MEMBER(funcube_outputs_w);
	DECLARE_READ8_MEMBER(funcube_battery_r);
	DECLARE_READ16_MEMBER(gundamex_eeprom_r);
	DECLARE_WRITE16_MEMBER(gundamex_eeprom_w);
	DECLARE_READ32_MEMBER(oki_read);
	DECLARE_WRITE32_MEMBER(oki_write);
	DECLARE_DRIVER_INIT(funcube3);
	DECLARE_DRIVER_INIT(funcube);
	DECLARE_DRIVER_INIT(funcube2);
	DECLARE_VIDEO_START(seta2);
	DECLARE_MACHINE_RESET(funcube);
	DECLARE_VIDEO_START(seta2_yoffset);
	DECLARE_VIDEO_START(seta2_xoffset);
	UINT32 screen_update_seta2(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
	void screen_eof_seta2(screen_device &screen, bool state);
	INTERRUPT_GEN_MEMBER(seta2_interrupt);
	INTERRUPT_GEN_MEMBER(samshoot_interrupt);
	INTERRUPT_GEN_MEMBER(funcube_sub_timer_irq);
	TIMER_DEVICE_CALLBACK_MEMBER(funcube_interrupt);
};