]> Shamusworld >> Repos - thunder/blob - src/psg.h
Thunder now works with NO samples! \o/
[thunder] / src / psg.h
1 #ifndef __PSG_H__
2 #define __PSG_H__
3
4 #include <stdint.h>
5
6 void InitPSG(uint32_t s = 44100);
7 void UpdatePSG(uint8_t * buffer, int count);
8 void WritePSG(uint16_t address, uint8_t data);
9 uint8_t ReadPSG(uint16_t address);
10
11 #endif  // __PSG_H__
12