diff options
author | 2010-12-31 21:42:55 +0000 | |
---|---|---|
committer | 2010-12-31 21:42:55 +0000 | |
commit | 3b41606ca0c02056604a55a7b1f5165e80bc11fb (patch) | |
tree | 415d338c92efb4c7f1d4922255060f279d1d4fa2 /src/emu/machine/74153.h | |
parent | 2ca38fad3e665d2e4e0212263a07819d36f4ba7f (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/74153.h')
-rw-r--r-- | src/emu/machine/74153.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/emu/machine/74153.h b/src/emu/machine/74153.h index d6e75a5b8bd..6a40c3c2619 100644 --- a/src/emu/machine/74153.h +++ b/src/emu/machine/74153.h @@ -42,7 +42,7 @@ typedef struct _ttl74153_config ttl74153_config; struct _ttl74153_config { - void (*output_cb)(running_device *device); + void (*output_cb)(device_t *device); }; @@ -53,13 +53,13 @@ struct _ttl74153_config /* must call TTL74153_update() after setting the inputs */ -void ttl74153_update(running_device *device); +void ttl74153_update(device_t *device); -void ttl74153_a_w(running_device *device, int data); -void ttl74153_b_w(running_device *device, int data); -void ttl74153_input_line_w(running_device *device, int section, int input_line, int data); -void ttl74153_enable_w(running_device *device, int section, int data); -int ttl74153_output_r(running_device *device, int section); +void ttl74153_a_w(device_t *device, int data); +void ttl74153_b_w(device_t *device, int data); +void ttl74153_input_line_w(device_t *device, int section, int input_line, int data); +void ttl74153_enable_w(device_t *device, int section, int data); +int ttl74153_output_r(device_t *device, int section); DECLARE_LEGACY_DEVICE(TTL74153, ttl74153); |