1 #ifndef TIA_H
2 #define TIA_H
3 
4 #define TIA_DEFAULT_GAIN 16
5 
6 struct TIAinterface {
7     unsigned int clock;
8 	int volume;
9 	int gain;
10 	int baseclock;
11 };
12 
13 int tia_sh_start (const struct MachineSound *msound);
14 void tia_sh_stop (void);
15 void tia_sh_update (void);
16 
17 #endif
18 
19 
20