summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/thoop2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/thoop2.h')
-rw-r--r--src/mame/includes/thoop2.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mame/includes/thoop2.h b/src/mame/includes/thoop2.h
index 390caf7a7f9..cb6f6567a11 100644
--- a/src/mame/includes/thoop2.h
+++ b/src/mame/includes/thoop2.h
@@ -5,8 +5,6 @@
#pragma once
-#include "machine/74259.h"
-
class thoop2_state : public driver_device
{
public:
@@ -16,7 +14,6 @@ public:
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette"),
- m_outlatch(*this, "outlatch"),
m_videoram(*this, "videoram"),
m_vregs(*this, "vregs"),
m_spriteram(*this, "spriteram"),
@@ -24,7 +21,6 @@ public:
{ }
DECLARE_WRITE8_MEMBER(OKIM6295_bankswitch_w);
- DECLARE_WRITE8_MEMBER(coin_w);
DECLARE_WRITE_LINE_MEMBER(coin1_lockout_w);
DECLARE_WRITE_LINE_MEMBER(coin2_lockout_w);
DECLARE_WRITE_LINE_MEMBER(coin1_counter_w);
@@ -53,7 +49,6 @@ private:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- required_device<ls259_device> m_outlatch;
required_shared_ptr<uint16_t> m_videoram;
required_shared_ptr<uint16_t> m_vregs;