diff options
author | 2008-08-09 00:55:07 +0000 | |
---|---|---|
committer | 2008-08-09 00:55:07 +0000 | |
commit | e6cf588405ed998d373086abd9e8e6c3dff65e6f (patch) | |
tree | ddc1592ffef8a4c05eff5fddfef9dc3903e037d5 /src/emu/sound/2151intf.h | |
parent | 4bc7e64b4638e486ad7b27763496b301face36e5 (diff) |
Some more structure/naming updates of sound cores.
FWIW, I first check for variables named name_interface and rename them as name_cofig, so they don't conflict with the new interface names.
struct YMF262interface to ymf262_interface
struct YM2151interface to ym2151_interface
struct YM2203interface to ym2203_interface
struct YM2608interface to ym2608_interface
struct YM2610interface to ym2610_interface
struct YM2612interface to ym2612_interface
struct YM3812interface to ym3812_interface
struct Y8950interface to y8950_interface
struct YM3526interface to ym3526_interface
struct TMS5110interface to tms5110_interface
struct TMS5220interface to tms5220_interface
struct AICAinterface to aica_interface
Diffstat (limited to 'src/emu/sound/2151intf.h')
-rw-r--r-- | src/emu/sound/2151intf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/sound/2151intf.h b/src/emu/sound/2151intf.h index 66bab7708ce..87b1e3e33b8 100644 --- a/src/emu/sound/2151intf.h +++ b/src/emu/sound/2151intf.h @@ -1,7 +1,8 @@ #ifndef YM2151INTF_H #define YM2151INTF_H -struct YM2151interface +typedef struct _ym2151_interface ym2151_interface; +struct _ym2151_interface { void (*irqhandler)(running_machine *machine, int irq); write8_machine_func portwritehandler; |