summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/vrender0.h
blob: a1a16fb8c1c38ca468e00f1c6158d57e8ffbb050 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#ifndef __VRENDER0_H__
#define __VRENDER0_H__

#include "devlegcy.h"


typedef struct _vr0_interface vr0_interface;
struct _vr0_interface
{
	UINT32 RegBase;
};

void vr0_snd_set_areas(device_t *device,UINT32 *texture,UINT32 *frame);

READ32_DEVICE_HANDLER( vr0_snd_read );
WRITE32_DEVICE_HANDLER( vr0_snd_write );

DECLARE_LEGACY_SOUND_DEVICE(VRENDER0, vrender0);

#endif /* __VRENDER0_H__ */