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:Ernesto Corvi, Nicola Salmoria
/*
buggychl
*/
#ifndef MAME_INCLUDES_BUGGYCHL_H
#define MAME_INCLUDES_BUGGYCHL_H
#pragma once
#include "machine/taito68705interface.h"
#include "machine/input_merger.h"
#include "machine/gen_latch.h"
#include "sound/msm5232.h"
#include "sound/ta7630.h"
#include "sound/ay8910.h"
#include "emupal.h"
#include "screen.h"
class buggychl_state : public driver_device
{
public:
buggychl_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_charram(*this, "charram"),
m_videoram(*this, "videoram"),
m_spriteram(*this, "spriteram"),
m_scrollv(*this, "scrollv"),
m_scrollh(*this, "scrollh"),
m_audiocpu(*this, "audiocpu"),
m_maincpu(*this, "maincpu"),
m_bmcu(*this, "bmcu"),
m_ta7630(*this, "ta7630"),
m_msm(*this, "msm"),
m_ay1(*this, "ay1"),
m_ay2(*this, "ay2"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
m_soundnmi(*this, "soundnmi"),
m_soundlatch(*this, "soundlatch"),
m_soundlatch2(*this, "soundlatch2"),
m_pedal_input(*this, "PEDAL"),
m_led(*this, "led%u", 0U)
{ }
/* memory pointers */
required_shared_ptr<uint8_t> m_charram;
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_spriteram;
required_shared_ptr<uint8_t> m_scrollv;
required_shared_ptr<uint8_t> m_scrollh;
/* devices */
required_device<cpu_device> m_audiocpu;
required_device<cpu_device> m_maincpu;
required_device<taito68705_mcu_device> m_bmcu;
required_device<ta7630_device> m_ta7630;
required_device<msm5232_device> m_msm;
required_device<ay8910_device> m_ay1;
required_device<ay8910_device> m_ay2;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
required_device<input_merger_device> m_soundnmi;
required_device<generic_latch_8_device> m_soundlatch;
required_device<generic_latch_8_device> m_soundlatch2;
required_ioport m_pedal_input;
output_finder<1> m_led;
void bankswitch_w(uint8_t data);
void sound_enable_w(uint8_t data);
uint8_t mcu_status_r();
uint8_t sound_status_main_r();
uint8_t sound_status_sound_r();
void buggychl_chargen_w(offs_t offset, uint8_t data);
void buggychl_sprite_lookup_bank_w(uint8_t data);
void buggychl_sprite_lookup_w(offs_t offset, uint8_t data);
void buggychl_ctrl_w(uint8_t data);
void buggychl_bg_scrollx_w(uint8_t data);
void ta7630_volbal_ay1_w(uint8_t data);
void port_b_0_w(uint8_t data);
void ta7630_volbal_ay2_w(uint8_t data);
void port_b_1_w(uint8_t data);
void ta7630_volbal_msm_w(uint8_t data);
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
void buggychl_palette(palette_device &palette) const;
uint32_t screen_update_buggychl(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_CUSTOM_INPUT_MEMBER( pedal_in_r );
void buggychl(machine_config &config);
void buggychl_map(address_map &map);
void sound_map(address_map &map);
private:
void draw_sky( bitmap_ind16 &bitmap, const rectangle &cliprect );
void draw_bg( bitmap_ind16 &bitmap, const rectangle &cliprect );
void draw_fg( bitmap_ind16 &bitmap, const rectangle &cliprect );
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
/* video-related */
bitmap_ind16 m_tmp_bitmap1;
bitmap_ind16 m_tmp_bitmap2;
int m_sl_bank;
int m_bg_clip_on;
int m_sky_on;
int m_sprite_color_base;
int m_bg_scrollx;
bool m_sound_irq_enable;
uint8_t m_sprite_lookup[0x2000];
};
#endif // MAME_INCLUDES_BUGGYCHL_H
|