summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devintrf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/devintrf.h')
-rw-r--r--src/emu/devintrf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/devintrf.h b/src/emu/devintrf.h
index 5bb49d6b414..9b08ddced6e 100644
--- a/src/emu/devintrf.h
+++ b/src/emu/devintrf.h
@@ -39,14 +39,14 @@ enum
/* --- the following bits of info are returned as pointers --- */
DEVINFO_PTR_FIRST = 0x10000,
-
+
DEVINFO_PTR_DEVICE_SPECIFIC = 0x18000, /* R/W: device-specific values start here */
DEVINFO_PTR_LAST = 0x1ffff,
/* --- the following bits of info are returned as pointers to functions --- */
DEVINFO_FCT_FIRST = 0x20000,
-
+
DEVINFO_FCT_SET_INFO = DEVINFO_FCT_FIRST, /* R/O: device_set_info_func */
DEVINFO_FCT_START, /* R/O: device_start_func */
DEVINFO_FCT_STOP, /* R/O: device_stop_func */
@@ -99,7 +99,7 @@ union _deviceinfo
void * p; /* generic pointers */
genf * f; /* generic function pointers */
const char * s; /* generic strings */
-
+
device_set_info_func set_info; /* DEVINFO_FCT_SET_INFO */
device_start_func start; /* DEVINFO_FCT_START */
device_stop_func stop; /* DEVINFO_FCT_STOP */