summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/halleys.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/halleys.cpp')
-rw-r--r--src/mame/drivers/halleys.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/mame/drivers/halleys.cpp b/src/mame/drivers/halleys.cpp
index 827e316cdc3..38834ecf57f 100644
--- a/src/mame/drivers/halleys.cpp
+++ b/src/mame/drivers/halleys.cpp
@@ -226,6 +226,14 @@ public:
m_palette(*this, "palette"),
m_soundlatch(*this, "soundlatch") { }
+ void benberob(machine_config &config);
+ void halleys(machine_config &config);
+
+ void init_halley87();
+ void init_benberob();
+ void init_halleys();
+
+private:
uint16_t *m_render_layer[MAX_LAYERS];
uint8_t m_sound_fifo[MAX_SOUNDS];
uint8_t *m_gfx_plane02;
@@ -271,9 +279,6 @@ public:
DECLARE_READ8_MEMBER(io_mirror_r);
void blit(int offset);
DECLARE_WRITE8_MEMBER(sndnmi_msk_w);
- void init_halley87();
- void init_benberob();
- void init_halleys();
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(halleys);
@@ -293,8 +298,6 @@ public:
required_device<cpu_device> m_audiocpu;
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
- void benberob(machine_config &config);
- void halleys(machine_config &config);
void halleys_map(address_map &map);
void sound_map(address_map &map);
};