summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/msm6242.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-04-23 16:33:28 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-04-23 16:33:28 +0000
commit7b90e0165903bfd7231c9c39de83def12b1cc793 (patch)
treec8611959e09640db1c7bf42fa4a7448da7a30937 /src/emu/machine/msm6242.c
parentc8f329e654111e3fd85ac700ab7bd1537556a301 (diff)
Deprecated device_set_info. Almost all devices had a NULL or empty
function here. Remaining devices have been converted to have device-specific functions to do the same thing with proper type checking. CPUs still have a set_info function but it is CPU-specific now and no longer piggybacks on the general device function.
Diffstat (limited to 'src/emu/machine/msm6242.c')
-rw-r--r--src/emu/machine/msm6242.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/emu/machine/msm6242.c b/src/emu/machine/msm6242.c
index 6bd6774457b..8327d6c4a1e 100644
--- a/src/emu/machine/msm6242.c
+++ b/src/emu/machine/msm6242.c
@@ -162,15 +162,6 @@ static DEVICE_START( msm6242 )
}
-static DEVICE_SET_INFO( msm6242 )
-{
- switch (state)
- {
- /* no parameters to set */
- }
-}
-
-
DEVICE_GET_INFO( msm6242 )
{
switch (state)
@@ -181,7 +172,6 @@ DEVICE_GET_INFO( msm6242 )
case DEVINFO_INT_CLASS: info->i = DEVICE_CLASS_TIMER; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
- case DEVINFO_FCT_SET_INFO: info->set_info = DEVICE_SET_INFO_NAME(msm6242); break;
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(msm6242); break;
case DEVINFO_FCT_STOP: /* Nothing */ break;
case DEVINFO_FCT_RESET: /* Nothing */ break;