diff options
Diffstat (limited to 'src/emu/machine/74123.c')
-rw-r--r-- | src/emu/machine/74123.c | 10 |
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; |