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
115
116
117
118
119
120
121
122
123
124
125
126
|
// license:BSD-3-Clause
// copyright-holders:Chris Moore
/***************************************************************************
GAME PLAN driver
driver by Chris Moore
***************************************************************************/
#include "machine/6522via.h"
#include "machine/6532riot.h"
#include "machine/gen_latch.h"
#include "screen.h"
#define GAMEPLAN_MAIN_MASTER_CLOCK (XTAL(3'579'545))
#define GAMEPLAN_AUDIO_MASTER_CLOCK (XTAL(3'579'545))
#define GAMEPLAN_MAIN_CPU_CLOCK (GAMEPLAN_MAIN_MASTER_CLOCK / 4)
#define GAMEPLAN_AUDIO_CPU_CLOCK (GAMEPLAN_AUDIO_MASTER_CLOCK / 4)
#define GAMEPLAN_AY8910_CLOCK (GAMEPLAN_AUDIO_MASTER_CLOCK / 2)
#define GAMEPLAN_PIXEL_CLOCK (XTAL(11'668'800) / 2)
/* Used Leprechaun/Pot of Gold (and Pirate Treasure) - as stated in manual for Pot Of Gold */
#define LEPRECHAUN_MAIN_MASTER_CLOCK (XTAL(4'000'000))
#define LEPRECHAUN_MAIN_CPU_CLOCK (LEPRECHAUN_MAIN_MASTER_CLOCK / 4)
class gameplan_state : public driver_device
{
public:
gameplan_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_via_0(*this, "via6522_0"),
m_via_1(*this, "via6522_1"),
m_via_2(*this, "via6522_2"),
m_screen(*this, "screen"),
m_audiocpu(*this, "audiocpu"),
m_riot(*this, "riot"),
m_soundlatch(*this, "soundlatch") { }
void gameplan(machine_config &config);
void gameplan_video(machine_config &config);
void leprechn(machine_config &config);
void leprechn_video(machine_config &config);
protected:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
required_device<cpu_device> m_maincpu;
required_device<via6522_device> m_via_0;
required_device<via6522_device> m_via_1;
required_device<via6522_device> m_via_2;
required_device<screen_device> m_screen;
void video_data_w(uint8_t data);
void gameplan_video_command_w(uint8_t data);
DECLARE_WRITE_LINE_MEMBER(video_command_trigger_w);
uint32_t screen_update_gameplan(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
private:
/* machine state */
uint8_t m_current_port = 0U;
/* video state */
std::unique_ptr<uint8_t[]> m_videoram{};
size_t m_videoram_size = 0U;
uint8_t m_video_x = 0U;
uint8_t m_video_y = 0U;
uint8_t m_video_command = 0U;
uint8_t m_video_data = 0U;
uint8_t m_video_previous = 0U;
emu_timer *m_clear_done_timer;
/* devices */
optional_device<cpu_device> m_audiocpu;
optional_device<riot6532_device> m_riot;
optional_device<generic_latch_8_device> m_soundlatch;
void io_select_w(uint8_t data);
uint8_t io_port_r();
DECLARE_WRITE_LINE_MEMBER(coin_w);
DECLARE_WRITE_LINE_MEMBER(audio_reset_w);
void audio_cmd_w(uint8_t data);
DECLARE_WRITE_LINE_MEMBER(audio_trigger_w);
DECLARE_WRITE_LINE_MEMBER(r6532_irq);
uint32_t screen_update_leprechn(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(clear_screen_done_callback);
void leprechn_video_command_w(uint8_t data);
uint8_t leprechn_videoram_r();
void gameplan_get_pens( pen_t *pens );
void leprechn_get_pens( pen_t *pens );
void gameplan_audio_map(address_map &map);
void gameplan_main_map(address_map &map);
void leprechn_audio_map(address_map &map);
};
class trvquest_state : public gameplan_state
{
public:
trvquest_state(const machine_config &mconfig, device_type type, const char *tag) :
gameplan_state(mconfig, type, tag),
m_question(*this, "question"),
m_questions_region(*this, "questions") { }
void trvquest(machine_config &config);
void trvquest_video(machine_config &config);
protected:
virtual void machine_start() override;
private:
required_shared_ptr<uint8_t> m_question;
required_region_ptr<uint8_t> m_questions_region;
uint8_t question_r(offs_t offset);
DECLARE_WRITE_LINE_MEMBER(coin_w);
DECLARE_WRITE_LINE_MEMBER(misc_w);
void cpu_map(address_map &map);
};
|