summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sacstate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sacstate.cpp')
-rw-r--r--src/mame/drivers/sacstate.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/sacstate.cpp b/src/mame/drivers/sacstate.cpp
index fe225bb28fa..f69cda3a6c7 100644
--- a/src/mame/drivers/sacstate.cpp
+++ b/src/mame/drivers/sacstate.cpp
@@ -48,15 +48,17 @@ public:
, m_terminal(*this, "terminal")
{ }
+ void sacstate(machine_config &config);
+
+private:
DECLARE_READ8_MEMBER(port00_r);
DECLARE_READ8_MEMBER(port01_r);
DECLARE_READ8_MEMBER(port04_r);
DECLARE_WRITE8_MEMBER(port08_w);
void kbd_put(u8 data);
- void sacstate(machine_config &config);
void sacstate_io(address_map &map);
void sacstate_mem(address_map &map);
-private:
+
uint8_t m_term_data;
uint8_t m_val;
virtual void machine_reset() override;