]> Shamusworld >> Repos - apple2/blob - apple2/src/ay8910.h
Creating trunk (should've done this from the start)...
[apple2] / apple2 / src / ay8910.h
1 #ifndef AY8910_H\r
2 #define AY8910_H\r
3 \r
4 #include "types.h"\r
5 \r
6 #define MAX_8910 4\r
7 \r
8 void _AYWriteReg(int n, int r, int v);\r
9 void AY8910_reset(int chip);\r
10 void AY8910Update(int chip, int16 ** buffer, int length);\r
11 \r
12 void AY8910_InitAll(int nClock, int nSampleRate);\r
13 void AY8910_InitClock(int nClock);\r
14 uint8 * AY8910_GetRegsPtr(uint16 nAyNum);\r
15 \r
16 #endif\r