summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/s11b.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/s11b.h')
-rw-r--r--src/mame/includes/s11b.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mame/includes/s11b.h b/src/mame/includes/s11b.h
index 9630c62531a..9d41388521d 100644
--- a/src/mame/includes/s11b.h
+++ b/src/mame/includes/s11b.h
@@ -16,7 +16,6 @@ class s11b_state : public s11a_state
public:
s11b_state(const machine_config &mconfig, device_type type, const char *tag)
: s11a_state(mconfig, type, tag)
- , m_bg_hc55516(*this, "hc55516_bg")
{ }
void s11b(machine_config &config);
@@ -29,9 +28,6 @@ public:
void pia2c_pb_w(uint8_t data);
void pia34_pa_w(uint8_t data);
- void bg_cvsd_clock_set_w(uint8_t data);
- void bg_cvsd_digit_clock_clear_w(uint8_t data);
-
protected:
void set_invert(bool inv) { m_invert = inv; }
@@ -39,12 +35,8 @@ private:
DECLARE_MACHINE_RESET(s11b);
void s11b_audio_map(address_map &map);
- void s11b_bg_map(address_map &map);
void s11b_main_map(address_map &map);
- optional_device<hc55516_device> m_bg_hc55516;
-
-
bool m_invert; // later System 11B games start expecting inverted data to the display LED segments.
};