summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/zapcomputer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/zapcomputer.h')
-rw-r--r--src/mess/includes/zapcomputer.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mess/includes/zapcomputer.h b/src/mess/includes/zapcomputer.h
index fef411e7d10..e86ae010da3 100644
--- a/src/mess/includes/zapcomputer.h
+++ b/src/mess/includes/zapcomputer.h
@@ -15,16 +15,16 @@
class zapcomp_state : public driver_device
{
public:
- zapcomp_state(const machine_config &mconfig, device_type type, const char *tag) :
- driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu")
- { }
+ zapcomp_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
+ m_maincpu(*this, "maincpu")
+ { }
- required_device<cpu_device> m_maincpu;
- DECLARE_READ8_MEMBER(keyboard_r);
- DECLARE_WRITE8_MEMBER(display_7seg_w);
+ required_device<cpu_device> m_maincpu;
+ DECLARE_READ8_MEMBER(keyboard_r);
+ DECLARE_WRITE8_MEMBER(display_7seg_w);
- virtual void machine_start();
+ virtual void machine_start();
};
#endif // __ZAPCOMPUTER__