diff options
Diffstat (limited to 'src/emu/sound/upd7759.h')
-rw-r--r-- | src/emu/sound/upd7759.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/sound/upd7759.h b/src/emu/sound/upd7759.h index 150bf70f72c..ddc4490e9f2 100644 --- a/src/emu/sound/upd7759.h +++ b/src/emu/sound/upd7759.h @@ -13,14 +13,14 @@ typedef struct _upd7759_interface upd7759_interface; struct _upd7759_interface { - void (*drqcallback)(const device_config *device, int param); /* drq callback (per chip, slave mode only) */ + void (*drqcallback)(running_device *device, int param); /* drq callback (per chip, slave mode only) */ }; -void upd7759_set_bank_base(const device_config *device, offs_t base); +void upd7759_set_bank_base(running_device *device, offs_t base); -void upd7759_reset_w(const device_config *device, UINT8 data); -void upd7759_start_w(const device_config *device, UINT8 data); -int upd7759_busy_r(const device_config *device); +void upd7759_reset_w(running_device *device, UINT8 data); +void upd7759_start_w(running_device *device, UINT8 data); +int upd7759_busy_r(running_device *device); WRITE8_DEVICE_HANDLER( upd7759_port_w ); DEVICE_GET_INFO( upd7759 ); |