summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/snowbros.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/snowbros.h')
-rw-r--r--src/mame/includes/snowbros.h124
1 files changed, 0 insertions, 124 deletions
diff --git a/src/mame/includes/snowbros.h b/src/mame/includes/snowbros.h
deleted file mode 100644
index 04b247deca7..00000000000
--- a/src/mame/includes/snowbros.h
+++ /dev/null
@@ -1,124 +0,0 @@
-// 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_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;
- int m_sb3_music;
- uint8_t m_semicom_prot_offset;
- uint16_t m_semicom_prot_base;
- uint16_t m_yutnori_prot_val;
-
- 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