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/machine/e0516.h | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/emu/machine/e0516.h')
-rw-r--r-- | src/emu/machine/e0516.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/emu/machine/e0516.h b/src/emu/machine/e0516.h index 02424f63cb3..e049659062f 100644 --- a/src/emu/machine/e0516.h +++ b/src/emu/machine/e0516.h @@ -43,11 +43,11 @@ // ======================> e0516_device class e0516_device : public device_t, - public device_rtc_interface + public device_rtc_interface { public: - // construction/destruction - e0516_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + // construction/destruction + e0516_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); DECLARE_WRITE_LINE_MEMBER( cs_w ); DECLARE_WRITE_LINE_MEMBER( clk_w ); @@ -55,20 +55,20 @@ public: DECLARE_READ_LINE_MEMBER( dio_r ); protected: - // device-level overrides - virtual void device_start(); - virtual void device_reset(); + // device-level overrides + virtual void device_start(); + virtual void device_reset(); virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr); private: - int m_cs; // chip select - int m_clk; // clock - int m_data_latch; // data latch - int m_reg_latch; // register latch - int m_read_write; // read/write data - int m_state; // state - int m_bits; // number of bits transferred - int m_dio; // data pin + int m_cs; // chip select + int m_clk; // clock + int m_data_latch; // data latch + int m_reg_latch; // register latch + int m_read_write; // read/write data + int m_state; // state + int m_bits; // number of bits transferred + int m_dio; // data pin // timers emu_timer *m_timer; |