summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/k005289.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-09-03 15:00:20 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-09-03 15:00:20 +0000
commit071eb8de4be2099c033a0c49554d5b690f5e969b (patch)
tree329c0e27c2e33cb213894b157193d37e381135e5 /src/emu/sound/k005289.c
parenteb4aa7ad05d6ebc74bd88f19ca815e694734f9c7 (diff)
Cleanup and some inheritance fixes (no whatsnew)
Diffstat (limited to 'src/emu/sound/k005289.c')
-rw-r--r--src/emu/sound/k005289.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/emu/sound/k005289.c b/src/emu/sound/k005289.c
index b70c590b844..78297c7a0a3 100644
--- a/src/emu/sound/k005289.c
+++ b/src/emu/sound/k005289.c
@@ -245,35 +245,6 @@ WRITE8_DEVICE_HANDLER( k005289_keylatch_B_w )
k005289_recompute(info);
}
-
-
-
-/**************************************************************************
- * Generic get_info
- **************************************************************************/
-
-DEVICE_GET_INFO( k005289 )
-{
- switch (state)
- {
- /* --- the following bits of info are returned as 64-bit signed integers --- */
- case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(k005289_state); break;
-
- /* --- the following bits of info are returned as pointers to data or functions --- */
- case DEVINFO_FCT_START: info->start = DEVICE_START_NAME( k005289 ); break;
- case DEVINFO_FCT_STOP: /* nothing */ break;
- case DEVINFO_FCT_RESET: /* nothing */ break;
-
- /* --- the following bits of info are returned as NULL-terminated strings --- */
- case DEVINFO_STR_NAME: strcpy(info->s, "K005289"); break;
- case DEVINFO_STR_FAMILY: strcpy(info->s, "Konami custom"); break;
- case DEVINFO_STR_VERSION: strcpy(info->s, "1.0"); break;
- case DEVINFO_STR_SOURCE_FILE: strcpy(info->s, __FILE__); break;
- case DEVINFO_STR_CREDITS: strcpy(info->s, "Copyright Nicola Salmoria and the MAME Team"); break;
- }
-}
-
-
const device_type K005289 = &device_creator<k005289_device>;
k005289_device::k005289_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)