summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/k056800.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-12-24 07:24:51 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-12-24 07:24:51 +0000
commitca546caa6e2932e504d020fb80b6cc0e8665cea9 (patch)
treeaa9f12d46b8088c24d1ff5322d0808c0aacce42c /src/emu/sound/k056800.h
parentefaac9818f3f4511f7ad5201fcfe3bbd22c007a4 (diff)
Cleanups and version bumpmame0152
Diffstat (limited to 'src/emu/sound/k056800.h')
-rw-r--r--src/emu/sound/k056800.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/emu/sound/k056800.h b/src/emu/sound/k056800.h
index 2942f3616f4..121244e950b 100644
--- a/src/emu/sound/k056800.h
+++ b/src/emu/sound/k056800.h
@@ -13,8 +13,7 @@
***************************************************************************/
#define MCFG_K056800_ADD(_tag, _clock) \
- MCFG_DEVICE_ADD(_tag, K056800, _clock) \
-
+ MCFG_DEVICE_ADD(_tag, K056800, _clock)
#define MCFG_K056800_INT_HANDLER(_devcb) \
devcb = &k056800_device::set_int_handler(*device, DEVCB2_##_devcb);
@@ -45,12 +44,12 @@ protected:
private:
// internal state
- bool m_int_pending;
- bool m_int_enabled;
- UINT8 m_host_to_snd_regs[4];
- UINT8 m_snd_to_host_regs[2];
+ bool m_int_pending;
+ bool m_int_enabled;
+ UINT8 m_host_to_snd_regs[4];
+ UINT8 m_snd_to_host_regs[2];
- devcb2_write_line m_int_handler;
+ devcb2_write_line m_int_handler;
};
extern const device_type K056800;