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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
// license:BSD-3-Clause
// copyright-holders:Takahiro Nogi, Uki
#include "machine/eepromser.h"
class fromanc2_state : public driver_device
{
public:
fromanc2_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_subcpu(*this, "sub"),
m_eeprom(*this, "eeprom"),
m_gfxdecode(*this, "gfxdecode"),
m_lpalette(*this, "lpalette"),
m_rpalette(*this, "rpalette") { }
/* memory pointers */
std::unique_ptr<UINT16[]> m_videoram[2][4];
std::unique_ptr<UINT8[]> m_bankedram;
/* video-related */
tilemap_t *m_tilemap[2][4];
int m_scrollx[2][4];
int m_scrolly[2][4];
int m_gfxbank[2][4];
/* misc */
int m_portselect;
UINT8 m_subcpu_int_flag;
UINT8 m_subcpu_nmi_flag;
UINT8 m_sndcpu_nmi_flag;
UINT16 m_datalatch1;
UINT8 m_datalatch_2h;
UINT8 m_datalatch_2l;
/* devices */
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
optional_device<cpu_device> m_subcpu;
optional_device<eeprom_serial_93cxx_device> m_eeprom;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_lpalette;
required_device<palette_device> m_rpalette;
DECLARE_WRITE16_MEMBER(fromanc2_sndcmd_w);
DECLARE_WRITE16_MEMBER(fromanc2_portselect_w);
DECLARE_READ16_MEMBER(fromanc2_keymatrix_r);
DECLARE_WRITE16_MEMBER(fromancr_gfxbank_eeprom_w);
DECLARE_WRITE16_MEMBER(fromanc2_subcpu_w);
DECLARE_READ16_MEMBER(fromanc2_subcpu_r);
DECLARE_READ8_MEMBER(fromanc2_maincpu_r_l);
DECLARE_READ8_MEMBER(fromanc2_maincpu_r_h);
DECLARE_WRITE8_MEMBER(fromanc2_maincpu_w_l);
DECLARE_WRITE8_MEMBER(fromanc2_maincpu_w_h);
DECLARE_WRITE8_MEMBER(fromanc2_subcpu_nmi_clr);
DECLARE_READ8_MEMBER(fromanc2_sndcpu_nmi_clr);
DECLARE_WRITE8_MEMBER(fromanc2_subcpu_rombank_w);
DECLARE_WRITE16_MEMBER(fromanc2_videoram_0_w);
DECLARE_WRITE16_MEMBER(fromanc2_videoram_1_w);
DECLARE_WRITE16_MEMBER(fromanc2_videoram_2_w);
DECLARE_WRITE16_MEMBER(fromanc2_videoram_3_w);
DECLARE_WRITE16_MEMBER(fromanc2_gfxreg_0_w);
DECLARE_WRITE16_MEMBER(fromanc2_gfxreg_1_w);
DECLARE_WRITE16_MEMBER(fromanc2_gfxreg_2_w);
DECLARE_WRITE16_MEMBER(fromanc2_gfxreg_3_w);
DECLARE_WRITE16_MEMBER(fromanc2_gfxbank_0_w);
DECLARE_WRITE16_MEMBER(fromanc2_gfxbank_1_w);
DECLARE_WRITE16_MEMBER(fromancr_videoram_0_w);
DECLARE_WRITE16_MEMBER(fromancr_videoram_1_w);
DECLARE_WRITE16_MEMBER(fromancr_videoram_2_w);
DECLARE_WRITE16_MEMBER(fromancr_gfxreg_0_w);
DECLARE_WRITE16_MEMBER(fromancr_gfxreg_1_w);
DECLARE_WRITE16_MEMBER(fromanc4_videoram_0_w);
DECLARE_WRITE16_MEMBER(fromanc4_videoram_1_w);
DECLARE_WRITE16_MEMBER(fromanc4_videoram_2_w);
DECLARE_WRITE16_MEMBER(fromanc4_gfxreg_0_w);
DECLARE_WRITE16_MEMBER(fromanc4_gfxreg_1_w);
DECLARE_WRITE16_MEMBER(fromanc4_gfxreg_2_w);
DECLARE_CUSTOM_INPUT_MEMBER(subcpu_int_r);
DECLARE_CUSTOM_INPUT_MEMBER(sndcpu_nmi_r);
DECLARE_CUSTOM_INPUT_MEMBER(subcpu_nmi_r);
DECLARE_DRIVER_INIT(fromanc4);
DECLARE_DRIVER_INIT(fromanc2);
TILE_GET_INFO_MEMBER(fromanc2_get_v0_l0_tile_info);
TILE_GET_INFO_MEMBER(fromanc2_get_v0_l1_tile_info);
TILE_GET_INFO_MEMBER(fromanc2_get_v0_l2_tile_info);
TILE_GET_INFO_MEMBER(fromanc2_get_v0_l3_tile_info);
TILE_GET_INFO_MEMBER(fromanc2_get_v1_l0_tile_info);
TILE_GET_INFO_MEMBER(fromanc2_get_v1_l1_tile_info);
TILE_GET_INFO_MEMBER(fromanc2_get_v1_l2_tile_info);
TILE_GET_INFO_MEMBER(fromanc2_get_v1_l3_tile_info);
TILE_GET_INFO_MEMBER(fromancr_get_v0_l0_tile_info);
TILE_GET_INFO_MEMBER(fromancr_get_v0_l1_tile_info);
TILE_GET_INFO_MEMBER(fromancr_get_v0_l2_tile_info);
TILE_GET_INFO_MEMBER(fromancr_get_v1_l0_tile_info);
TILE_GET_INFO_MEMBER(fromancr_get_v1_l1_tile_info);
TILE_GET_INFO_MEMBER(fromancr_get_v1_l2_tile_info);
virtual void machine_reset() override;
DECLARE_MACHINE_START(fromanc2);
DECLARE_VIDEO_START(fromanc2);
DECLARE_VIDEO_START(fromancr);
DECLARE_MACHINE_START(fromanc4);
DECLARE_VIDEO_START(fromanc4);
UINT32 screen_update_fromanc2_left(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
UINT32 screen_update_fromanc2_right(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(fromanc2_interrupt);
inline void fromanc2_get_tile_info( tile_data &tileinfo, int tile_index, int vram, int layer );
inline void fromancr_get_tile_info( tile_data &tileinfo, int tile_index, int vram, int layer );
inline void fromanc2_dispvram_w( offs_t offset, UINT16 data, UINT16 mem_mask, int vram, int layer );
inline void fromancr_vram_w(offs_t offset, UINT16 data, UINT16 mem_mask, int layer );
void fromancr_gfxbank_w( int data );
inline void fromanc4_vram_w( offs_t offset, UINT16 data, UINT16 mem_mask, int layer );
DECLARE_WRITE_LINE_MEMBER(irqhandler);
};
|