mame/src/emu/sound/vrender0.h
Derrick Renaud 3710253aa7 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.
2008-08-11 00:32:08 +00:00

19 lines
299 B
C

#pragma once
#ifndef __VRENDER0_H__
#define __VRENDER0_H__
typedef struct _vr0_interface vr0_interface;
struct _vr0_interface
{
UINT32 RegBase;
};
void vr0_snd_set_areas(UINT32 *texture,UINT32 *frame);
READ32_HANDLER(vr0_snd_read);
WRITE32_HANDLER(vr0_snd_write);
#endif /* __VRENDER0_H__ */