diff options
author | 2008-08-10 02:23:43 +0000 | |
---|---|---|
committer | 2008-08-10 02:23:43 +0000 | |
commit | 4f0cddd1a5e0769fa36950278d012536aa3589f4 (patch) | |
tree | 6ae59eec143d101e23457409642bfdcd1eda7032 /src/emu/sound/multipcm.h | |
parent | 317af7eba88188f9590b9d224329c383a06e29b0 (diff) |
Updated src\emu\sound headers from K-S, so they use latest naming/structure and re-inclusion support. Also lowercased the handler names.
What a PITA. :) I'll have to go back and do A-J to lower case the handlers to match the new structure names I already did.
Sorry Mess and other port developers, but the code should match what is stated on the official WIKI. But don't worry, I don't plan on updating anything but the sound cores.
Diffstat (limited to 'src/emu/sound/multipcm.h')
-rw-r--r-- | src/emu/sound/multipcm.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/emu/sound/multipcm.h b/src/emu/sound/multipcm.h index 92456f7eb2b..c3ab51342e7 100644 --- a/src/emu/sound/multipcm.h +++ b/src/emu/sound/multipcm.h @@ -1,11 +1,13 @@ -#ifndef __MultiPCM_H__ -#define __MultiPCM_H__ +#pragma once -WRITE8_HANDLER( MultiPCM_reg_0_w ); -READ8_HANDLER( MultiPCM_reg_0_r); -WRITE8_HANDLER( MultiPCM_reg_1_w ); -READ8_HANDLER( MultiPCM_reg_1_r); +#ifndef __MULTIPCM_H__ +#define __MULTIPCM_H__ -void multipcm_set_bank(int which, UINT32 leftoffs, UINT32 rightoffs); +WRITE8_HANDLER( multi_pcm_reg_0_w ); +READ8_HANDLER( multi_pcm_reg_0_r); +WRITE8_HANDLER( multi_pcm_reg_1_w ); +READ8_HANDLER( multi_pcm_reg_1_r); -#endif +void multi_pcm_set_bank(int which, UINT32 leftoffs, UINT32 rightoffs); + +#endif /* __MULTIPCM_H__ */ |