summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bottom9.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bottom9.h')
-rw-r--r--src/mame/includes/bottom9.h75
1 files changed, 0 insertions, 75 deletions
diff --git a/src/mame/includes/bottom9.h b/src/mame/includes/bottom9.h
deleted file mode 100644
index a132758868d..00000000000
--- a/src/mame/includes/bottom9.h
+++ /dev/null
@@ -1,75 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Nicola Salmoria
-/*************************************************************************
-
- Bottom of the Ninth
-
-*************************************************************************/
-#ifndef MAME_INCLUDES_BOTTOM9_H
-#define MAME_INCLUDES_BOTTOM9_H
-
-#pragma once
-
-#include "sound/k007232.h"
-#include "video/k052109.h"
-#include "video/k051960.h"
-#include "video/k051316.h"
-#include "video/konami_helper.h"
-#include "emupal.h"
-
-class bottom9_state : public driver_device
-{
-public:
- bottom9_state(const machine_config &mconfig, device_type type, const char *tag) :
- driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_audiocpu(*this, "audiocpu"),
- m_k007232_1(*this, "k007232_1"),
- m_k007232_2(*this, "k007232_2"),
- m_k052109(*this, "k052109"),
- m_k051960(*this, "k051960"),
- m_k051316(*this, "k051316"),
- m_palette(*this, "palette")
- { }
-
- /* misc */
- int m_video_enable;
- int m_zoomreadroms;
- int m_k052109_selected;
- int m_nmienable;
-
- /* devices */
- required_device<cpu_device> m_maincpu;
- required_device<cpu_device> m_audiocpu;
- required_device<k007232_device> m_k007232_1;
- required_device<k007232_device> m_k007232_2;
- required_device<k052109_device> m_k052109;
- required_device<k051960_device> m_k051960;
- required_device<k051316_device> m_k051316;
- required_device<palette_device> m_palette;
- DECLARE_READ8_MEMBER(k052109_051960_r);
- DECLARE_WRITE8_MEMBER(k052109_051960_w);
- DECLARE_READ8_MEMBER(bottom9_bankedram1_r);
- DECLARE_WRITE8_MEMBER(bottom9_bankedram1_w);
- DECLARE_READ8_MEMBER(bottom9_bankedram2_r);
- DECLARE_WRITE8_MEMBER(bottom9_bankedram2_w);
- DECLARE_WRITE8_MEMBER(bankswitch_w);
- DECLARE_WRITE8_MEMBER(bottom9_1f90_w);
- DECLARE_WRITE8_MEMBER(bottom9_sh_irqtrigger_w);
- DECLARE_WRITE8_MEMBER(nmi_enable_w);
- DECLARE_WRITE8_MEMBER(sound_bank_w);
- virtual void machine_start() override;
- virtual void machine_reset() override;
- uint32_t screen_update_bottom9(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- INTERRUPT_GEN_MEMBER(bottom9_sound_interrupt);
- DECLARE_WRITE8_MEMBER(volume_callback0);
- DECLARE_WRITE8_MEMBER(volume_callback1);
- K051316_CB_MEMBER(zoom_callback);
- K052109_CB_MEMBER(tile_callback);
- K051960_CB_MEMBER(sprite_callback);
- void bottom9(machine_config &config);
- void audio_map(address_map &map);
- void main_map(address_map &map);
-};
-
-#endif // MAME_INCLUDES_BOTTOM9_H