diff options
author | 2008-08-11 00:32:08 +0000 | |
---|---|---|
committer | 2008-08-11 00:32:08 +0000 | |
commit | 3710253aa77562ab4ab3e5abe9714f9f5a631b33 (patch) | |
tree | 064b48fd487739f3ed747215c7fc088ff66b0227 /src/emu/sound/bsmt2000.h | |
parent | fdf667cf9c4ba2d82c71eeb8ae9099151c33359a (diff) |
This (mostly - see below) completes the structure, lower-casing functions and re-inclusion updates of the src\sound\emu headers.
I did not do much to the following files because I did not know the best way to name them.
aicadsp.h
sid.h
sidenvel.h
sidvoice.h
ymdeltat.h
I did not update structures only used in the src\emu\sound\*.c files. They are only used locally in the file so they were not worth the effort.
Diffstat (limited to 'src/emu/sound/bsmt2000.h')
-rw-r--r-- | src/emu/sound/bsmt2000.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/emu/sound/bsmt2000.h b/src/emu/sound/bsmt2000.h index 0dd2027988a..ad7d9b96055 100644 --- a/src/emu/sound/bsmt2000.h +++ b/src/emu/sound/bsmt2000.h @@ -5,9 +5,11 @@ * **********************************************************************************************/ -#ifndef BSMT2000_H -#define BSMT2000_H +#pragma once -WRITE16_HANDLER( BSMT2000_data_0_w ); +#ifndef __BSMT2000_H__ +#define __BSMT2000_H__ -#endif +WRITE16_HANDLER( bsmt2000_data_0_w ); + +#endif /* __BSMT2000_H__ */ |