From 1dcd75d039272b7aff43a42f5fee6d9a8d822fe9 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Mon, 2 Mar 2009 10:59:37 +0000 Subject: Removed device types from device queries that use tags, under the assumption that all device tags are unique. Specifically, the following no longer need to provide a device type: AM_DEVREAD/WRITE DEVCB_DEVICE_HANDLER devtag_get_device devtag_reset device_list_find_by_tag as well as several device interfaces that referenced other devices. Also fixed assertion due to overflow in the recent sound fix. --- src/emu/machine/timekpr.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/emu/machine/timekpr.h') diff --git a/src/emu/machine/timekpr.h b/src/emu/machine/timekpr.h index ea761190d64..7a27f640175 100644 --- a/src/emu/machine/timekpr.h +++ b/src/emu/machine/timekpr.h @@ -25,7 +25,7 @@ DEVICE_GET_INFO(m48t02); MDRV_DEVICE_ADD(_tag, M48T02, 0) #define MDRV_M48T02_REMOVE(_tag) \ - MDRV_DEVICE_REMOVE(_tag, M48T02) + MDRV_DEVICE_REMOVE(_tag) #define M48T35 DEVICE_GET_INFO_NAME(m48t35) @@ -35,7 +35,7 @@ DEVICE_GET_INFO(m48t35); MDRV_DEVICE_ADD(_tag, M48T35, 0) #define MDRV_M48T35_REMOVE(_tag) \ - MDRV_DEVICE_REMOVE(_tag, M48T35) + MDRV_DEVICE_REMOVE(_tag) #define M48T58 DEVICE_GET_INFO_NAME(m48t58) @@ -45,7 +45,7 @@ DEVICE_GET_INFO(m48t58); MDRV_DEVICE_ADD(_tag, M48T58, 0) #define MDRV_M48T58_REMOVE(_tag) \ - MDRV_DEVICE_REMOVE(_tag, M48T58) + MDRV_DEVICE_REMOVE(_tag) #define MK48T08 DEVICE_GET_INFO_NAME(mk48t08) @@ -55,7 +55,7 @@ DEVICE_GET_INFO(mk48t08); MDRV_DEVICE_ADD(_tag, MK48T08, 0) #define MDRV_MK48T08_REMOVE(_tag) \ - MDRV_DEVICE_REMOVE(_tag, MK48T08) + MDRV_DEVICE_REMOVE(_tag) /* memory handlers */ -- cgit v1.2.3-70-g09d2