summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bzone.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bzone.h')
-rw-r--r--src/mame/includes/bzone.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/includes/bzone.h b/src/mame/includes/bzone.h
index 345b23ef54f..e59b94dd50e 100644
--- a/src/mame/includes/bzone.h
+++ b/src/mame/includes/bzone.h
@@ -14,6 +14,7 @@
#include "machine/er2055.h"
#include "machine/mathbox.h"
#include "sound/discrete.h"
+#include "screen.h"
#define BZONE_MASTER_CLOCK (XTAL(12'096'000))
#define BZONE_CLOCK_3KHZ (BZONE_MASTER_CLOCK / 4096)
@@ -26,6 +27,7 @@ public:
m_maincpu(*this, "maincpu"),
m_mathbox(*this, "mathbox"),
m_discrete(*this, "discrete"),
+ m_screen(*this, "screen"),
m_startled(*this, "startled")
{ }
@@ -45,12 +47,13 @@ protected:
void bzone_audio(machine_config &config);
void bzone_map(address_map &map);
-private:
required_device<cpu_device> m_maincpu;
required_device<mathbox_device> m_mathbox;
optional_device<discrete_device> m_discrete;
+ required_device<screen_device> m_screen;
output_finder<> m_startled;
+private:
uint8_t m_analog_data;
};