diff options
| author | 2015-09-30 08:29:01 +0200 | |
|---|---|---|
| committer | 2015-09-30 08:29:01 +0200 | |
| commit | 8e4ced4b531ac52fb764d9374a7c215bc62a890a (patch) | |
| tree | c29767f6a9f305bac993eaaf1ca268e85cf0427c /src/mess/includes/zapcomputer.h | |
| parent | 9fd990dea821ddca94916fa3eed0aef824eb08ea (diff) | |
Cleanups and version bumpmame0166
Diffstat (limited to 'src/mess/includes/zapcomputer.h')
| -rw-r--r-- | src/mess/includes/zapcomputer.h | 16 |
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__ |
