summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/psx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/psx.h')
-rw-r--r--src/emu/sound/psx.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/emu/sound/psx.h b/src/emu/sound/psx.h
index 081f808dfff..95fcd31cded 100644
--- a/src/emu/sound/psx.h
+++ b/src/emu/sound/psx.h
@@ -11,10 +11,10 @@
#ifndef __SOUND_PSX_H__
#define __SOUND_PSX_H__
-WRITE32_HANDLER( psx_spu_w );
-READ32_HANDLER( psx_spu_r );
-WRITE32_HANDLER( psx_spu_delay_w );
-READ32_HANDLER( psx_spu_delay_r );
+WRITE32_DEVICE_HANDLER( psx_spu_w );
+READ32_DEVICE_HANDLER( psx_spu_r );
+WRITE32_DEVICE_HANDLER( psx_spu_delay_w );
+READ32_DEVICE_HANDLER( psx_spu_delay_r );
typedef void ( *spu_handler )( running_machine *, UINT32, INT32 );
@@ -22,12 +22,12 @@ typedef struct _psx_spu_interface psx_spu_interface;
struct _psx_spu_interface
{
UINT32 **p_psxram;
- void (*irq_set)(running_machine *,UINT32);
+ void (*irq_set)(const device_config *,UINT32);
void (*spu_install_read_handler)(int,spu_handler);
void (*spu_install_write_handler)(int,spu_handler);
};
-SND_GET_INFO( psxspu );
-#define SOUND_PSXSPU SND_GET_INFO_NAME( psxspu )
+DEVICE_GET_INFO( psxspu );
+#define SOUND_PSXSPU DEVICE_GET_INFO_NAME( psxspu )
#endif /* __SOUND_PSX_H__ */