summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/e0516.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/e0516.h')
-rw-r--r--src/emu/machine/e0516.h28
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;