summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/pv1000.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/mess/drivers/pv1000.c
parenteb4aa7ad05d6ebc74bd88f19ca815e694734f9c7 (diff)
Cleanup and some inheritance fixes (no whatsnew)
Diffstat (limited to 'src/mess/drivers/pv1000.c')
-rw-r--r--src/mess/drivers/pv1000.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/mess/drivers/pv1000.c b/src/mess/drivers/pv1000.c
index 3caf4df7086..f429a52ab18 100644
--- a/src/mess/drivers/pv1000.c
+++ b/src/mess/drivers/pv1000.c
@@ -340,20 +340,6 @@ static DEVICE_START( pv1000_sound )
}
-DEVICE_GET_INFO( pv1000_sound )
-{
- switch (state)
- {
- /* --- the following bits of info are returned as pointers to data or functions --- */
- case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(pv1000_sound); break;
-
- /* --- the following bits of info are returned as NULL-terminated strings --- */
- case DEVINFO_STR_NAME: strcpy(info->s, "NEC D65010G031"); break;
- case DEVINFO_STR_SOURCE_FILE: strcpy(info->s, __FILE__); break;
- }
-}
-
-
/* Interrupt is triggering 16 times during vblank. */
/* we have chosen to trigger on scanlines 195, 199, 203, 207, 211, 215, 219, 223, 227, 231, 235, 239, 243, 247, 251, 255 */
static TIMER_CALLBACK( d65010_irq_on_cb )