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
|
// license:BSD-3-Clause
// copyright-holders:Zsolt Vasvari
#include "sound/sn76477.h"
class route16_state : public driver_device
{
public:
route16_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_sn(*this, "snsnd"),
m_sharedram(*this, "sharedram"),
m_videoram1(*this, "videoram1"),
m_videoram2(*this, "videoram2"),
m_palette(*this, "palette") {}
optional_device<sn76477_device> m_sn;
required_shared_ptr<UINT8> m_sharedram;
required_shared_ptr<UINT8> m_videoram1;
required_shared_ptr<UINT8> m_videoram2;
required_device<palette_device> m_palette;
UINT8 m_ttmahjng_port_select;
int m_speakres_vrx;
UINT8 m_flipscreen;
UINT8 m_palette_1;
UINT8 m_palette_2;
DECLARE_WRITE8_MEMBER(out0_w);
DECLARE_WRITE8_MEMBER(out1_w);
DECLARE_WRITE8_MEMBER(route16_sharedram_w);
DECLARE_READ8_MEMBER(routex_prot_read);
DECLARE_WRITE8_MEMBER(ttmahjng_input_port_matrix_w);
DECLARE_READ8_MEMBER(ttmahjng_input_port_matrix_r);
DECLARE_READ8_MEMBER(speakres_in3_r);
DECLARE_WRITE8_MEMBER(speakres_out2_w);
DECLARE_WRITE8_MEMBER(stratvox_sn76477_w);
DECLARE_DRIVER_INIT(route16);
DECLARE_DRIVER_INIT(route16a);
DECLARE_DRIVER_INIT(route16c);
DECLARE_MACHINE_START(speakres);
DECLARE_MACHINE_START(ttmahjng);
virtual void video_start() override;
UINT32 screen_update_route16(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
UINT32 screen_update_ttmahjng(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
};
|