314a419bf4
Added some code to start the FDC driver for the A2560K (not working) and sound test commands.
32 lines
548 B
C
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
|