diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/emu/video/crt9021.h | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/emu/video/crt9021.h')
-rw-r--r-- | src/emu/video/crt9021.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/emu/video/crt9021.h b/src/emu/video/crt9021.h index 14ca455b46c..f3cc54e61ec 100644 --- a/src/emu/video/crt9021.h +++ b/src/emu/video/crt9021.h @@ -63,24 +63,24 @@ struct crt9021_interface { - const char *screen_tag; /* screen we are acting on */ + const char *screen_tag; /* screen we are acting on */ - devcb_read8 in_data_cb; - devcb_read8 in_attr_cb; + devcb_read8 in_data_cb; + devcb_read8 in_attr_cb; - devcb_read_line in_atten_cb; + devcb_read_line in_atten_cb; }; // ======================> crt9021_device -class crt9021_device : public device_t, - public crt9021_interface +class crt9021_device : public device_t, + public crt9021_interface { public: - // construction/destruction - crt9021_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + // construction/destruction + crt9021_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); DECLARE_WRITE_LINE_MEMBER( slg_w ); DECLARE_WRITE_LINE_MEMBER( sld_w ); @@ -91,16 +91,16 @@ public: UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); protected: - // device-level overrides + // device-level overrides virtual void device_config_complete(); - virtual void device_start(); + virtual void device_start(); virtual void device_clock_changed(); virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr); private: - devcb_resolved_read8 m_in_data_func; - devcb_resolved_read8 m_in_attr_func; - devcb_resolved_read_line m_in_atten_func; + devcb_resolved_read8 m_in_data_func; + devcb_resolved_read8 m_in_attr_func; + devcb_resolved_read_line m_in_atten_func; screen_device *m_screen; |