summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/decobsmt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/decobsmt.h')
-rw-r--r--src/mame/audio/decobsmt.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/mame/audio/decobsmt.h b/src/mame/audio/decobsmt.h
index ab6aadd2947..773397f2b60 100644
--- a/src/mame/audio/decobsmt.h
+++ b/src/mame/audio/decobsmt.h
@@ -10,7 +10,7 @@
#define DECOBSMT_TAG "decobsmt"
#define MCFG_DECOBSMT_ADD(_tag) \
- MCFG_DEVICE_ADD(_tag, DECOBSMT, 0)
+ MCFG_DEVICE_ADD(_tag, DECOBSMT, 0)
//**************************************************************************
// TYPE DEFINITIONS
@@ -19,33 +19,33 @@
class decobsmt_device : public device_t
{
public:
- // construction/destruction
- decobsmt_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ // construction/destruction
+ decobsmt_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const;
- DECLARE_WRITE8_MEMBER(bsmt_reset_w);
- DECLARE_READ8_MEMBER(bsmt_status_r);
- DECLARE_WRITE8_MEMBER(bsmt0_w);
- DECLARE_WRITE8_MEMBER(bsmt1_w);
- DECLARE_READ8_MEMBER(bsmt_comms_r);
- DECLARE_WRITE8_MEMBER(bsmt_comms_w);
+ DECLARE_WRITE8_MEMBER(bsmt_reset_w);
+ DECLARE_READ8_MEMBER(bsmt_status_r);
+ DECLARE_WRITE8_MEMBER(bsmt0_w);
+ DECLARE_WRITE8_MEMBER(bsmt1_w);
+ DECLARE_READ8_MEMBER(bsmt_comms_r);
+ DECLARE_WRITE8_MEMBER(bsmt_comms_w);
- DECLARE_WRITE_LINE_MEMBER(bsmt_reset_line);
+ DECLARE_WRITE_LINE_MEMBER(bsmt_reset_line);
- required_device<cpu_device> m_ourcpu;
- required_device<bsmt2000_device> m_bsmt;
+ required_device<cpu_device> m_ourcpu;
+ required_device<bsmt2000_device> m_bsmt;
protected:
- // device-level overrides
- virtual void device_start();
- virtual void device_reset();
+ // device-level overrides
+ virtual void device_start();
+ virtual void device_reset();
private:
- UINT8 m_bsmt_latch;
- UINT8 m_bsmt_reset;
- UINT8 m_bsmt_comms;
+ UINT8 m_bsmt_latch;
+ UINT8 m_bsmt_reset;
+ UINT8 m_bsmt_comms;
};