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
|
// license:BSD-3-Clause
// copyright-holders:David Haywood, Mike Coates
#ifndef MAME_INCLUDES_SNOWBROS_H
#define MAME_INCLUDES_SNOWBROS_H
#pragma once
#include "machine/gen_latch.h"
#include "machine/timer.h"
#include "sound/okim6295.h"
#include "video/kan_pand.h" // for the original pandora
#include "emupal.h"
#include "screen.h"
class snowbros_state : public driver_device
{
public:
snowbros_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this,"maincpu"),
m_soundcpu(*this, "soundcpu"),
m_oki(*this, "oki"),
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette"),
m_screen(*this, "screen"),
m_soundlatch(*this, "soundlatch"),
m_pandora(*this, "pandora"),
m_hyperpac_ram(*this, "hyperpac_ram"),
m_bootleg_spriteram16(*this, "spriteram16b"),
m_semicom_prot_base(0)
{ }
void _4in1(machine_config &config);
void semiprot(machine_config &config);
void semicom_mcu(machine_config &config);
void yutnori(machine_config &config);
void snowbros(machine_config &config);
void semicom(machine_config &config);
void twinadv(machine_config &config);
void wintbob(machine_config &config);
void honeydol(machine_config &config);
void snowbro3(machine_config &config);
void finalttr(machine_config &config);
void init_pzlbreak();
void init_snowbro3();
void init_ballboy3p();
void init_cookbib3();
void init_4in1boot();
void init_3in1semi();
void init_cookbib2();
void init_toto();
void init_hyperpac();
void init_yutnori();
private:
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_soundcpu;
optional_device<okim6295_device> m_oki;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
required_device<screen_device> m_screen;
optional_device<generic_latch_8_device> m_soundlatch; // not snowbro3
optional_device<kaneko_pandora_device> m_pandora;
optional_shared_ptr<uint16_t> m_hyperpac_ram;
optional_shared_ptr<uint16_t> m_bootleg_spriteram16;
int m_sb3_music_is_playing = 0;
int m_sb3_music = 0;
uint8_t m_semicom_prot_offset = 0;
uint16_t m_semicom_prot_base;
uint16_t m_yutnori_prot_val = 0;
void snowbros_flipscreen_w(uint8_t data);
void bootleg_flipscreen_w(uint8_t data);
void snowbros_irq4_ack_w(uint16_t data);
void snowbros_irq3_ack_w(uint16_t data);
void snowbros_irq2_ack_w(uint16_t data);
void prot_p0_w(uint8_t data);
void prot_p1_w(uint8_t data);
void prot_p2_w(uint8_t data);
uint16_t sb3_sound_r();
uint16_t _4in1_02_read();
uint16_t _3in1_read();
uint16_t cookbib3_read();
void twinadv_oki_bank_w(uint8_t data);
void sb3_sound_w(uint16_t data);
uint16_t toto_read(offs_t offset, uint16_t mem_mask = ~0);
void yutnori_prot_w(uint16_t data);
uint16_t yutnori_prot_r();
DECLARE_MACHINE_RESET(semiprot);
DECLARE_MACHINE_RESET(finalttr);
uint32_t screen_update_snowbros(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_honeydol(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_twinadv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_snowbro3(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_wintbob(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(screen_vblank_snowbros);
TIMER_DEVICE_CALLBACK_MEMBER(snowbros_irq);
TIMER_DEVICE_CALLBACK_MEMBER(snowbros3_irq);
void sb3_play_music(int data);
void sb3_play_sound(int data);
void finalttr_map(address_map &map);
void honeydol_map(address_map &map);
void honeydol_sound_io_map(address_map &map);
void honeydol_sound_map(address_map &map);
void hyperpac_map(address_map &map);
void hyperpac_sound_map(address_map &map);
void snowbros3_map(address_map &map);
void snowbros_map(address_map &map);
void sound_io_map(address_map &map);
void sound_map(address_map &map);
void twinadv_map(address_map &map);
void twinadv_sound_io_map(address_map &map);
void wintbob_map(address_map &map);
void yutnori_map(address_map &map);
};
#endif // MAME_INCLUDES_SNOWBROS_H
|