diff options
author | 2014-07-22 06:21:54 +0000 | |
---|---|---|
committer | 2014-07-22 06:21:54 +0000 | |
commit | 79246ab9172f61178139b4b7974debba8fb7c5f8 (patch) | |
tree | 6365530c8cf287ea3b7752c3c45c8c6f8e4c68ae /src/emu/sound/tms5110.h | |
parent | 5d7e1fcc62a7f9dd5441eaccbc274f9327efcf00 (diff) |
More cleanups, there is issue with srcclean that needs to be taken care as well, just doing now what we can
Diffstat (limited to 'src/emu/sound/tms5110.h')
-rw-r--r-- | src/emu/sound/tms5110.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/emu/sound/tms5110.h b/src/emu/sound/tms5110.h index e11e0534c79..bf6eed76ee8 100644 --- a/src/emu/sound/tms5110.h +++ b/src/emu/sound/tms5110.h @@ -80,8 +80,8 @@ protected: void set_variant(int variant); - UINT8 m_talk_status; - sound_stream *m_stream; + UINT8 m_talk_status; + sound_stream *m_stream; private: void new_int_write(UINT8 rc, UINT8 m0, UINT8 m1, UINT8 addr); @@ -107,7 +107,7 @@ private: UINT8 m_CTL_pins; UINT8 m_speaking_now; - + UINT8 m_state; /* Rom interface */ @@ -259,7 +259,7 @@ public: static void set_stop_bit(device_t &device, UINT8 stop_bit) { downcast<tmsprom_device &>(device).m_stop_bit = stop_bit; } template<class _Object> static devcb_base &set_pdc_callback(device_t &device, _Object object) { return downcast<tmsprom_device &>(device).m_pdc_cb.set_callback(object); } template<class _Object> static devcb_base &set_ctl_callback(device_t &device, _Object object) { return downcast<tmsprom_device &>(device).m_ctl_cb.set_callback(object); } - + DECLARE_WRITE_LINE_MEMBER( m0_w ); DECLARE_READ_LINE_MEMBER( data_r ); @@ -314,25 +314,25 @@ extern const device_type TMSPROM; #define MCFG_TMSPROM_ROM_SIZE(_size) \ tmsprom_device::set_rom_size(*device, _size); - + #define MCFG_TMSPROM_PDC_BIT(_bit) \ tmsprom_device::set_pdc_bit(*device, _bit); - + #define MCFG_TMSPROM_CTL1_BIT(_bit) \ tmsprom_device::set_ctl1_bit(*device, _bit); #define MCFG_TMSPROM_CTL2_BIT(_bit) \ tmsprom_device::set_ctl2_bit(*device, _bit); - + #define MCFG_TMSPROM_CTL4_BIT(_bit) \ tmsprom_device::set_ctl4_bit(*device, _bit); - + #define MCFG_TMSPROM_CTL8_BIT(_bit) \ tmsprom_device::set_ctl8_bit(*device, _bit); #define MCFG_TMSPROM_RESET_BIT(_bit) \ tmsprom_device::set_reset_bit(*device, _bit); - + #define MCFG_TMSPROM_STOP_BIT(_bit) \ tmsprom_device::set_stop_bit(*device, _bit); @@ -340,6 +340,6 @@ extern const device_type TMSPROM; devcb = &tmsprom_device::set_pdc_callback(*device, DEVCB_##_devcb); #define MCFG_TMSPROM_CTL_CB(_devcb) \ - devcb = &tmsprom_device::set_ctl_callback(*device, DEVCB_##_devcb); + devcb = &tmsprom_device::set_ctl_callback(*device, DEVCB_##_devcb); #endif /* __TMS5110_H__ */ |