mirror of
https://github.com/holub/mame
synced 2025-05-31 10:01:51 +03:00

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.
19 lines
299 B
C
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__ */
|