summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/74123.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/74123.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/74123.c')
-rw-r--r--src/emu/machine/74123.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/emu/machine/74123.c b/src/emu/machine/74123.c
index fbffdede487..4cf3484e2e0 100644
--- a/src/emu/machine/74123.c
+++ b/src/emu/machine/74123.c
@@ -217,15 +217,6 @@ static DEVICE_RESET( ttl74123 )
}
-static DEVICE_SET_INFO( ttl74123 )
-{
- switch (state)
- {
- /* no parameters to set */
- }
-}
-
-
DEVICE_GET_INFO( ttl74123 )
{
switch (state)
@@ -236,7 +227,6 @@ DEVICE_GET_INFO( ttl74123 )
case DEVINFO_INT_CLASS: info->i = DEVICE_CLASS_PERIPHERAL; 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(ttl74123); break;
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(ttl74123); break;
case DEVINFO_FCT_STOP: /* Nothing */ break;
case DEVINFO_FCT_RESET: info->reset = DEVICE_RESET_NAME(ttl74123); break;