summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/exp85.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/exp85.h')
-rw-r--r--src/mame/includes/exp85.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mame/includes/exp85.h b/src/mame/includes/exp85.h
index 42aaf9f074a..52ad9920ad7 100644
--- a/src/mame/includes/exp85.h
+++ b/src/mame/includes/exp85.h
@@ -25,6 +25,12 @@ public:
m_tape_control(0)
{ }
+ void exp85(machine_config &config);
+
+ DECLARE_INPUT_CHANGED_MEMBER( trigger_reset );
+ DECLARE_INPUT_CHANGED_MEMBER( trigger_rst75 );
+
+private:
required_device<cpu_device> m_maincpu;
required_device<rs232_port_device> m_rs232;
required_device<cassette_image_device> m_cassette;
@@ -37,12 +43,9 @@ public:
DECLARE_WRITE8_MEMBER( i8355_a_w );
DECLARE_READ_LINE_MEMBER( sid_r );
DECLARE_WRITE_LINE_MEMBER( sod_w );
- DECLARE_INPUT_CHANGED_MEMBER( trigger_reset );
- DECLARE_INPUT_CHANGED_MEMBER( trigger_rst75 );
/* cassette state */
int m_tape_control;
- void exp85(machine_config &config);
void exp85_io(address_map &map);
void exp85_mem(address_map &map);
};