diff options
author | 2018-05-06 19:19:48 +1000 | |
---|---|---|
committer | 2018-05-06 19:19:48 +1000 | |
commit | 138b60e6c6078260b12becbc6706fa0523eea506 (patch) | |
tree | 6c5bb013da8e6ea0500148169adf2c8436e900ab /src/devices/sound/ym2151.h | |
parent | 495ec11fdf79e06fb5102b395b7316fa273006a7 (diff) |
(nw) misc follow-up
Fix MT06964
Fix µPD7759 class hierarchy, and reset callback before resolving it
(fixed assert in Sega C2)
Remove some more low-value device add indirection macros, default some
more clocks
Make cards inherit clock from slot by default
Diffstat (limited to 'src/devices/sound/ym2151.h')
-rw-r--r-- | src/devices/sound/ym2151.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/devices/sound/ym2151.h b/src/devices/sound/ym2151.h index 989607bbf62..0aba974025f 100644 --- a/src/devices/sound/ym2151.h +++ b/src/devices/sound/ym2151.h @@ -40,9 +40,6 @@ // INTERFACE CONFIGURATION MACROS //************************************************************************** -#define MCFG_YM2151_ADD(_tag, _clock) \ - MCFG_DEVICE_ADD(_tag, YM2151, _clock) - #define MCFG_YM2151_IRQ_HANDLER(_devcb) \ devcb = &downcast<ym2151_device &>(*device).set_irq_handler(DEVCB_##_devcb); #define MCFG_YM2151_PORT_WRITE_HANDLER(_devcb) \ |