diff options
author | 2018-05-07 22:41:52 +1000 | |
---|---|---|
committer | 2018-05-07 22:41:52 +1000 | |
commit | 04da61a4c536d5d70434424af36c22b42e2fff67 (patch) | |
tree | 599e991820fec0e4efc66f391d9ff6edcb0693ab /src/devices/sound/lc7535.h | |
parent | 21f535838cb8c71f4c4b807e0dad0c6aa7bbddc0 (diff) |
(nw) checkpoint since Midway SSIO sound is fixed - periodic interrupt doesn't support derived clock, kill off some more low-value macros, add a validity check, fix changes to Okim M6295 pin 7 in vgmplay
Diffstat (limited to 'src/devices/sound/lc7535.h')
-rw-r--r-- | src/devices/sound/lc7535.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/devices/sound/lc7535.h b/src/devices/sound/lc7535.h index 6cc74d62b6d..bc3da9dc9c8 100644 --- a/src/devices/sound/lc7535.h +++ b/src/devices/sound/lc7535.h @@ -31,9 +31,6 @@ // INTERFACE CONFIGURATION MACROS //************************************************************************** -#define MCFG_LC7535_ADD(_tag) \ - MCFG_DEVICE_ADD(_tag, LC7535, 0) - #define MCFG_LC7535_SELECT_CB(_read) \ devcb = &downcast<lc7535_device &>(*device).set_select_callback(DEVCB_##_read); @@ -51,7 +48,7 @@ class lc7535_device : public device_t { public: // construction/destruction - lc7535_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + lc7535_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); typedef device_delegate<void (int attenuation_right, int attenuation_left, bool loudness)> volume_delegate; |