summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/mackbd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/mackbd.h')
-rw-r--r--src/mess/machine/mackbd.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mess/machine/mackbd.h b/src/mess/machine/mackbd.h
index c169d2d465a..5f43dbdb17f 100644
--- a/src/mess/machine/mackbd.h
+++ b/src/mess/machine/mackbd.h
@@ -11,20 +11,20 @@
// MACROS / CONSTANTS
//**************************************************************************
-#define MACKBD_TAG "mackbd"
+#define MACKBD_TAG "mackbd"
//**************************************************************************
// INTERFACE CONFIGURATION MACROS
//**************************************************************************
#define MCFG_MACKBD_ADD() \
- MCFG_DEVICE_ADD(MACKBD_TAG, MACKBD, 0)
+ MCFG_DEVICE_ADD(MACKBD_TAG, MACKBD, 0)
#define MCFG_MACKBD_REPLACE() \
- MCFG_DEVICE_REPLACE(MACKBD_TAG, MACKBD, 0)
+ MCFG_DEVICE_REPLACE(MACKBD_TAG, MACKBD, 0)
#define MCFG_MACKBD_REMOVE() \
- MCFG_DEVICE_REMOVE(MACKBD_TAG)
+ MCFG_DEVICE_REMOVE(MACKBD_TAG)
#define MCFG_MACKBD_CLKOUT_HANDLER(_devcb) \
devcb = &mackbd_device::set_clkout_handler(*device, DEVCB2_##_devcb);
@@ -42,7 +42,7 @@ public:
template<class _Object> static devcb2_base &set_clkout_handler(device_t &device, _Object object) { return downcast<mackbd_device &>(device).m_clkout_handler.set_callback(object); }
// construction/destruction
- mackbd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ mackbd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
DECLARE_READ8_MEMBER(p0_r);
DECLARE_WRITE8_MEMBER(p0_w);
@@ -56,14 +56,14 @@ public:
DECLARE_WRITE_LINE_MEMBER(data_w);
protected:
- // device-level overrides
- virtual void device_start();
- virtual void device_reset();
- virtual machine_config_constructor device_mconfig_additions() const;
- virtual const rom_entry *device_rom_region() const;
+ // device-level overrides
+ virtual void device_start();
+ virtual void device_reset();
+ virtual machine_config_constructor device_mconfig_additions() const;
+ virtual const rom_entry *device_rom_region() const;
virtual ioport_constructor device_input_ports() const;
- required_device<cpu_device> m_maincpu;
+ required_device<cpu_device> m_maincpu;
private:
UINT8 p0, p1, p2, data_from_mac, data_to_mac;