summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/turrett.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/turrett.h')
-rw-r--r--src/mame/includes/turrett.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mame/includes/turrett.h b/src/mame/includes/turrett.h
index 40ea062f203..f8e7cca90b7 100644
--- a/src/mame/includes/turrett.h
+++ b/src/mame/includes/turrett.h
@@ -25,6 +25,11 @@ public:
m_bank_b(*this, "bank_b"),
m_screen(*this, "screen") {}
+ void turrett(machine_config &config);
+
+ INPUT_CHANGED_MEMBER(ipt_change);
+
+private:
// constants
static const uint32_t X_VISIBLE = 336;
static const uint32_t Y_VISIBLE = 244;
@@ -45,7 +50,6 @@ public:
DECLARE_WRITE32_MEMBER(video_w);
DECLARE_READ32_MEMBER(int_r);
DECLARE_WRITE32_MEMBER(int_w);
- INPUT_CHANGED_MEMBER(ipt_change);
DECLARE_READ_LINE_MEMBER(sbrc2_r);
DECLARE_READ_LINE_MEMBER(sbrc3_r);
@@ -84,10 +88,9 @@ public:
uint8_t m_frame;
uint8_t m_adc;
- void turrett(machine_config &config);
void cpu_map(address_map &map);
void turrett_sound_map(address_map &map);
-protected:
+
// driver_device overrides
virtual void machine_reset() override;
virtual void machine_start() override;