summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/k007232.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/sound/k007232.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/sound/k007232.h')
-rw-r--r--src/emu/sound/k007232.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/sound/k007232.h b/src/emu/sound/k007232.h
index 8702104dbeb..548fd866bd7 100644
--- a/src/emu/sound/k007232.h
+++ b/src/emu/sound/k007232.h
@@ -12,13 +12,13 @@
typedef struct _k007232_interface k007232_interface;
struct _k007232_interface
{
- void (*portwritehandler)(running_device *, int);
+ void (*portwritehandler)(device_t *, int);
};
WRITE8_DEVICE_HANDLER( k007232_w );
READ8_DEVICE_HANDLER( k007232_r );
-void k007232_set_bank( running_device *device, int chABank, int chBBank );
+void k007232_set_bank( device_t *device, int chABank, int chBBank );
/*
The 007232 has two channels and produces two outputs. The volume control
@@ -28,7 +28,7 @@ void k007232_set_bank( running_device *device, int chABank, int chBBank );
then volumeB will be 0 for channel 0, and volumeA will be 0 for channel 1.
Volume is in the range 0-255.
*/
-void k007232_set_volume(running_device *device,int channel,int volumeA,int volumeB);
+void k007232_set_volume(device_t *device,int channel,int volumeA,int volumeB);
DECLARE_LEGACY_SOUND_DEVICE(K007232, k007232);