From 4ed7452ceb0c4ba838f21716fe2fbdc1bcae5262 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Fri, 26 Dec 2008 06:40:58 +0000 Subject: From: Atari Ace [mailto:atari_ace@verizon.net] Sent: Monday, December 22, 2008 8:04 AM To: submit@mamedev.org Cc: atariace@hotmail.com Subject: [patch] Update sound core header files Hi mamedev, This patch updates all the sound core header files to declare their SND_GET_INFO functions, which will be needed once the sound cores become proper devices. It also makes a handful of other header declaration fixes in emu/sound, and makes one SND_RESET routine static. Note: votrax.h is a new include file altogether. ~aa --- src/emu/sound/3812intf.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/emu/sound/3812intf.h') diff --git a/src/emu/sound/3812intf.h b/src/emu/sound/3812intf.h index a5439cb4617..d635eee652b 100644 --- a/src/emu/sound/3812intf.h +++ b/src/emu/sound/3812intf.h @@ -35,6 +35,7 @@ WRITE8_HANDLER( ym3812_control_port_1_w ); READ8_HANDLER( ym3812_read_port_1_r ); WRITE8_HANDLER( ym3812_write_port_1_w ); +SND_GET_INFO( ym3812 ); /* YM3526 */ READ8_HANDLER ( ym3526_status_port_0_r ); @@ -47,6 +48,7 @@ WRITE8_HANDLER( ym3526_control_port_1_w ); READ8_HANDLER( ym3526_read_port_1_r ); WRITE8_HANDLER( ym3526_write_port_1_w ); +SND_GET_INFO( ym3526 ); /* Y8950 */ READ8_HANDLER ( y8950_status_port_0_r ); @@ -59,4 +61,6 @@ WRITE8_HANDLER( y8950_control_port_1_w ); READ8_HANDLER ( y8950_read_port_1_r ); WRITE8_HANDLER( y8950_write_port_1_w ); +SND_GET_INFO( y8950 ); + #endif /* __3812INTF_H__ */ -- cgit v1.2.3-70-g09d2