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

#ifndef __ST0016_H__
#define __ST0016_H__

typedef struct _st0016_interface st0016_interface;
struct _st0016_interface
{
	UINT8 **p_soundram;
};

extern UINT8 *st0016_sound_regs;

WRITE8_HANDLER(st0016_snd_w);

SND_GET_INFO( st0016 );

#endif /* __ST0016_H__ */