summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bking.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bking.h')
-rw-r--r--src/mame/includes/bking.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/mame/includes/bking.h b/src/mame/includes/bking.h
index 50b8e4467c2..03b13033fe3 100644
--- a/src/mame/includes/bking.h
+++ b/src/mame/includes/bking.h
@@ -1,7 +1,7 @@
// license:BSD-3-Clause
// copyright-holders:Mike Balfour, Zsolt Vasvari
-#include "machine/buggychl.h"
+#include "machine/taito68705interface.h"
#include "machine/gen_latch.h"
class bking_state : public driver_device
@@ -11,7 +11,6 @@ public:
: driver_device(mconfig, type, tag),
m_playfield_ram(*this, "playfield_ram"),
m_audiocpu(*this, "audiocpu"),
- m_mcu(*this, "mcu"),
m_bmcu(*this, "bmcu"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
@@ -51,22 +50,12 @@ public:
/* devices */
required_device<cpu_device> m_audiocpu;
- optional_device<cpu_device> m_mcu;
- optional_device<buggychl_mcu_device> m_bmcu;
+ optional_device<taito68705_mcu_device> m_bmcu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
-#if 0
- /* 68705 */
- uint8_t m_port_a_in;
- uint8_t m_port_a_out;
- uint8_t m_ddr_a;
- uint8_t m_port_b_in;
- uint8_t m_port_b_out;
- uint8_t m_ddr_b;
-#endif
DECLARE_READ8_MEMBER(bking_sndnmi_disable_r);
DECLARE_WRITE8_MEMBER(bking_sndnmi_enable_w);
DECLARE_WRITE8_MEMBER(bking_soundlatch_w);