summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/s3c2400.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-12-31 21:42:55 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-12-31 21:42:55 +0000
commit3b41606ca0c02056604a55a7b1f5165e80bc11fb (patch)
tree415d338c92efb4c7f1d4922255060f279d1d4fa2 /src/emu/machine/s3c2400.h
parent2ca38fad3e665d2e4e0212263a07819d36f4ba7f (diff)
running_device -> device_t
They both already existed. No sense in having two names for the same object type.
Diffstat (limited to 'src/emu/machine/s3c2400.h')
-rw-r--r--src/emu/machine/s3c2400.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/s3c2400.h b/src/emu/machine/s3c2400.h
index e1d7ef93d5b..0362e51c70b 100644
--- a/src/emu/machine/s3c2400.h
+++ b/src/emu/machine/s3c2400.h
@@ -39,8 +39,8 @@ DECLARE_LEGACY_DEVICE(S3C2400, s3c2400);
TYPE DEFINITIONS
*******************************************************************************/
-typedef UINT32 (*s3c24xx_gpio_port_r_func)( running_device *device, int port);
-typedef void (*s3c24xx_gpio_port_w_func)( running_device *device, int port, UINT32 data);
+typedef UINT32 (*s3c24xx_gpio_port_r_func)( device_t *device, int port);
+typedef void (*s3c24xx_gpio_port_w_func)( device_t *device, int port, UINT32 data);
typedef struct _s3c2400_interface_gpio s3c2400_interface_gpio;
struct _s3c2400_interface_gpio
@@ -94,7 +94,7 @@ DEVICE_GET_INFO( s3c2400 );
VIDEO_START( s3c2400 );
VIDEO_UPDATE( s3c2400 );
-void s3c2400_uart_fifo_w( running_device *device, int uart, UINT8 data);
+void s3c2400_uart_fifo_w( device_t *device, int uart, UINT8 data);
/*******************************************************************************
MACROS & CONSTANTS