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
|
// license:GPL-2.0+
// copyright-holders:Norbert Kehrer
/***************************************************************************
Mad Alien (c) 1980 Data East Corporation
Original driver by Norbert Kehrer (February 2004)
***************************************************************************/
#include "sound/discrete.h"
#define MADALIEN_MAIN_CLOCK XTAL_10_595MHz
class madalien_state : public driver_device
{
public:
madalien_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_videoram(*this, "videoram"),
m_charram(*this, "charram"),
m_video_control(*this, "video_control"),
m_shift_hi(*this, "shift_hi"),
m_shift_lo(*this, "shift_lo"),
m_video_flags(*this, "video_flags"),
m_headlight_pos(*this, "headlight_pos"),
m_edge1_pos(*this, "edge1_pos"),
m_edge2_pos(*this, "edge2_pos"),
m_scroll(*this, "scroll"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_discrete(*this, "discrete"),
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_charram;
required_shared_ptr<UINT8> m_video_control;
required_shared_ptr<UINT8> m_shift_hi;
required_shared_ptr<UINT8> m_shift_lo;
required_shared_ptr<UINT8> m_video_flags;
required_shared_ptr<UINT8> m_headlight_pos;
required_shared_ptr<UINT8> m_edge1_pos;
required_shared_ptr<UINT8> m_edge2_pos;
required_shared_ptr<UINT8> m_scroll;
tilemap_t *m_tilemap_fg;
tilemap_t *m_tilemap_edge1[4];
tilemap_t *m_tilemap_edge2[4];
std::unique_ptr<bitmap_ind16> m_headlight_bitmap;
DECLARE_READ8_MEMBER(shift_r);
DECLARE_READ8_MEMBER(shift_rev_r);
DECLARE_WRITE8_MEMBER(madalien_output_w);
DECLARE_WRITE8_MEMBER(madalien_sound_command_w);
DECLARE_READ8_MEMBER(madalien_sound_command_r);
DECLARE_WRITE8_MEMBER(madalien_videoram_w);
DECLARE_WRITE8_MEMBER(madalien_charram_w);
DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
DECLARE_WRITE8_MEMBER(madalien_portA_w);
DECLARE_WRITE8_MEMBER(madalien_portB_w);
TILEMAP_MAPPER_MEMBER(scan_mode0);
TILEMAP_MAPPER_MEMBER(scan_mode1);
TILEMAP_MAPPER_MEMBER(scan_mode2);
TILEMAP_MAPPER_MEMBER(scan_mode3);
TILE_GET_INFO_MEMBER(get_tile_info_BG_1);
TILE_GET_INFO_MEMBER(get_tile_info_BG_2);
TILE_GET_INFO_MEMBER(get_tile_info_FG);
DECLARE_VIDEO_START(madalien);
DECLARE_PALETTE_INIT(madalien);
UINT32 screen_update_madalien(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
inline int scan_helper(int col, int row, int section);
void draw_edges(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int flip, int scroll_mode);
void draw_headlight(bitmap_ind16 &bitmap, const rectangle &cliprect, int flip);
void draw_foreground(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int flip);
inline UINT8 shift_common(UINT8 hi, UINT8 lo);
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<discrete_device> m_discrete;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
};
/*----------- defined in video/madalien.c -----------*/
MACHINE_CONFIG_EXTERN( madalien_video );
/*----------- defined in audio/madalien.c -----------*/
DISCRETE_SOUND_EXTERN( madalien );
/* Discrete Sound Input Nodes */
#define MADALIEN_8910_PORTA NODE_01
#define MADALIEN_8910_PORTB NODE_02
|