diff options
Diffstat (limited to 'src/emu/sound/ics2115.h')
-rw-r--r-- | src/emu/sound/ics2115.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/emu/sound/ics2115.h b/src/emu/sound/ics2115.h index 30d2d71a07a..cde826ec340 100644 --- a/src/emu/sound/ics2115.h +++ b/src/emu/sound/ics2115.h @@ -3,6 +3,8 @@ #ifndef __ICS2115_H__ #define __ICS2115_H__ +#include "devlegcy.h" + typedef struct _ics2115_interface ics2115_interface; struct _ics2115_interface { void (*irq_cb)(running_device *, int); @@ -11,7 +13,6 @@ struct _ics2115_interface { READ8_DEVICE_HANDLER( ics2115_r ); WRITE8_DEVICE_HANDLER( ics2115_w ); -DEVICE_GET_INFO( ics2115 ); -#define SOUND_ICS2115 DEVICE_GET_INFO_NAME( ics2115 ) +DECLARE_LEGACY_SOUND_DEVICE(ICS2115, ics2115); #endif /* __ICS2115_H__ */ |