diff options
author | 2008-12-26 06:40:58 +0000 | |
---|---|---|
committer | 2008-12-26 06:40:58 +0000 | |
commit | 4ed7452ceb0c4ba838f21716fe2fbdc1bcae5262 (patch) | |
tree | e3f7d711f3be0cd698d966da951d88e6f5bd9731 /src/emu/sound/3812intf.h | |
parent | 6a32a2c7c45e7abf0a05c892b4e230f8d99d51dc (diff) |
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
Diffstat (limited to 'src/emu/sound/3812intf.h')
-rw-r--r-- | src/emu/sound/3812intf.h | 4 |
1 files changed, 4 insertions, 0 deletions
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__ */ |