summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/beta.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/beta.h')
-rw-r--r--src/mess/includes/beta.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/mess/includes/beta.h b/src/mess/includes/beta.h
index 271117cf4d4..632a64b953b 100644
--- a/src/mess/includes/beta.h
+++ b/src/mess/includes/beta.h
@@ -23,11 +23,19 @@ public:
beta_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, M6502_TAG),
- m_speaker(*this, SPEAKER_TAG)
+ m_speaker(*this, SPEAKER_TAG),
+ m_q6(*this, "Q6"),
+ m_q7(*this, "Q7"),
+ m_q8(*this, "Q8"),
+ m_q9(*this, "Q9")
{ }
required_device<cpu_device> m_maincpu;
required_device<speaker_sound_device> m_speaker;
+ required_ioport m_q6;
+ required_ioport m_q7;
+ required_ioport m_q8;
+ required_ioport m_q9;
virtual void machine_start();
@@ -38,6 +46,7 @@ public:
DECLARE_INPUT_CHANGED_MEMBER( trigger_reset );
/* EPROM state */
+ UINT8 *m_eprom;
int m_eprom_oe;
int m_eprom_ce;
UINT16 m_eprom_addr;