FoenixMCP/src/snd/sid.h
Peter Weingartner 314a419bf4 FDC code and Sound Tests
Added some code to start the FDC driver for the A2560K (not working) and sound test commands.
2021-10-25 13:33:36 -04:00

32 lines
548 B
C

/*
* Definitions for the SID chips
*/
#ifndef __SID_H
#define __SID_H
/*
* Reset all SID registers on the given SID chip
*
* Inputs:
* sid = number of the SID to initialize (0 = Gideon mono, 1 = Gideon Left, 2 = Gideon Right, 3 = External Left, 4 = External Right)
*/
extern void sid_init(short sid);
/*
* Initialize all the SID chips
*/
extern void sid_init_all();
/*
* Test the internal SID implementation
*/
extern void sid_test_internal();
/*
* Test the external SID implementation
*/
extern void sid_test_external();
#endif