summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/flstory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/flstory.h')
-rw-r--r--src/mame/includes/flstory.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mame/includes/flstory.h b/src/mame/includes/flstory.h
index c1a101d43e2..59663673b3b 100644
--- a/src/mame/includes/flstory.h
+++ b/src/mame/includes/flstory.h
@@ -33,7 +33,8 @@ public:
m_palette(*this, "palette"),
m_soundlatch(*this, "soundlatch"),
m_soundlatch2(*this, "soundlatch2"),
- m_soundnmi(*this, "soundnmi")
+ m_soundnmi(*this, "soundnmi"),
+ m_extraio1(*this, "EXTRA_P1")
{ }
void common(machine_config &config);
@@ -43,8 +44,6 @@ public:
void victnine(machine_config &config);
void onna34ro_mcu(machine_config &config);
- DECLARE_CUSTOM_INPUT_MEMBER(victnine_mcu_status_bit01_r);
-
protected:
virtual void machine_start() override;
@@ -85,12 +84,11 @@ private:
required_device<generic_latch_8_device> m_soundlatch;
required_device<generic_latch_8_device> m_soundlatch2;
required_device<input_merger_device> m_soundnmi;
+ optional_ioport m_extraio1;
DECLARE_READ8_MEMBER(snd_flag_r);
DECLARE_WRITE8_MEMBER(snd_reset_w);
DECLARE_READ8_MEMBER(flstory_mcu_status_r);
- DECLARE_WRITE8_MEMBER(victnine_mcu_w);
- DECLARE_READ8_MEMBER(victnine_mcu_r);
DECLARE_READ8_MEMBER(victnine_mcu_status_r);
DECLARE_WRITE8_MEMBER(flstory_videoram_w);
DECLARE_WRITE8_MEMBER(flstory_palette_w);