diff options
author | 2012-09-03 15:00:20 +0000 | |
---|---|---|
committer | 2012-09-03 15:00:20 +0000 | |
commit | 071eb8de4be2099c033a0c49554d5b690f5e969b (patch) | |
tree | 329c0e27c2e33cb213894b157193d37e381135e5 /src/mess/audio/t6721.c | |
parent | eb4aa7ad05d6ebc74bd88f19ca815e694734f9c7 (diff) |
Cleanup and some inheritance fixes (no whatsnew)
Diffstat (limited to 'src/mess/audio/t6721.c')
-rw-r--r-- | src/mess/audio/t6721.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mess/audio/t6721.c b/src/mess/audio/t6721.c index e3b7a56173f..c3eea9e0749 100644 --- a/src/mess/audio/t6721.c +++ b/src/mess/audio/t6721.c @@ -284,25 +284,6 @@ static DEVICE_RESET( t6721 ) t6721->writeindex = 0; } - -/*------------------------------------------------- - device definition --------------------------------------------------*/ - -DEVICE_GET_INFO(t6721) -{ - switch (state) - { - case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(t6721_state); break; - - case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(t6721); break; - - case DEVINFO_FCT_RESET: info->reset = DEVICE_RESET_NAME(t6721); break; - - case DEVINFO_STR_NAME: strcpy(info->s, "Toshiba 6721A"); break; - } -} - const device_type T6721 = &device_creator<t6721_device>; t6721_device::t6721_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |