summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/hc55516.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/hc55516.h')
-rw-r--r--src/emu/sound/hc55516.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/emu/sound/hc55516.h b/src/emu/sound/hc55516.h
index f7db0b26093..7673ef14550 100644
--- a/src/emu/sound/hc55516.h
+++ b/src/emu/sound/hc55516.h
@@ -3,6 +3,8 @@
#ifndef __HC55516_H__
#define __HC55516_H__
+#include "devlegcy.h"
+
/* sets the digit (0 or 1) */
void hc55516_digit_w(running_device *device, int digit);
@@ -13,12 +15,8 @@ void hc55516_clock_w(running_device *device, int state);
/* returns whether the clock is currently LO or HI */
int hc55516_clock_state_r(running_device *device);
-DEVICE_GET_INFO( hc55516 );
-DEVICE_GET_INFO( mc3417 );
-DEVICE_GET_INFO( mc3418 );
-
-#define SOUND_HC55516 DEVICE_GET_INFO_NAME( hc55516 )
-#define SOUND_MC3417 DEVICE_GET_INFO_NAME( mc3417 )
-#define SOUND_MC3418 DEVICE_GET_INFO_NAME( mc3418 )
+DECLARE_LEGACY_SOUND_DEVICE(HC55516, hc55516);
+DECLARE_LEGACY_SOUND_DEVICE(MC3417, mc3417);
+DECLARE_LEGACY_SOUND_DEVICE(MC3418, mc3418);
#endif /* __HC55516_H__ */