]> Shamusworld >> Repos - thunder/blobdiff - src/psg.h
Added save states; updated application icon.
[thunder] / src / psg.h
index c8b44523d4d34de5377741f25ccbe5f1088ff63f..71e5219d0eda0113ee6900c71c7f6d56ed90e64b 100644 (file)
--- a/src/psg.h
+++ b/src/psg.h
@@ -2,11 +2,14 @@
 #define __PSG_H__
 
 #include <stdint.h>
+#include <stdio.h>
 
 void InitPSG(uint32_t s = 44100);
 void UpdatePSG(uint8_t * buffer, int count);
 void WritePSG(uint16_t address, uint8_t data);
 uint8_t ReadPSG(uint16_t address);
+void PSGSaveState(FILE *);
+void PSGLoadState(FILE *);
 
 #endif // __PSG_H__