summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/mos6530.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/mos6530.c')
-rw-r--r--src/mess/machine/mos6530.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/mess/machine/mos6530.c b/src/mess/machine/mos6530.c
index a36dcf3830c..c4c9734763c 100644
--- a/src/mess/machine/mos6530.c
+++ b/src/mess/machine/mos6530.c
@@ -434,27 +434,6 @@ static DEVICE_RESET( mos6530 )
}
-DEVICE_GET_INFO( mos6530 )
-{
- switch (state)
- {
- /* --- the following bits of info are returned as 64-bit signed integers --- */
- case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(mos6530_state); break;
-
- /* --- the following bits of info are returned as pointers to data or functions --- */
- case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(mos6530); break;
- case DEVINFO_FCT_STOP: /* Nothing */ break;
- case DEVINFO_FCT_RESET: info->reset = DEVICE_RESET_NAME(mos6530); break;
-
- /* --- the following bits of info are returned as NULL-terminated strings --- */
- case DEVINFO_STR_NAME: strcpy(info->s, "MOS6530"); break;
- case DEVINFO_STR_FAMILY: strcpy(info->s, "MOS6500"); 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 MESS Team"); break;
- }
-}
-
const device_type MOS6530 = &device_creator<mos6530_device>;
mos6530_device::mos6530_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)