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

#ifndef __S14001A_H__
#define __S14001A_H__

#include "devlegcy.h"

int s14001a_bsy_r(running_device *device);     		/* read BUSY pin */
void s14001a_reg_w(running_device *device, int data);		/* write to input latch */
void s14001a_rst_w(running_device *device, int data);		/* write to RESET pin */
void s14001a_set_clock(running_device *device, int clock);     /* set VSU-1000 clock */
void s14001a_set_volume(running_device *device, int volume);    /* set VSU-1000 volume control */

DECLARE_LEGACY_SOUND_DEVICE(S14001A, s14001a);

#endif /* __S14001A_H__ */