comparison sidlib.h @ 128:2636185649c6

Add si_fread_str() helper function.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 27 Oct 2016 11:58:52 +0300
parents c1462b7880e8
children c2d2369feadc
comparison
equal deleted inserted replaced
127:1786b9d77782 128:2636185649c6
49 initAddress, // Initialization address 49 initAddress, // Initialization address
50 playAddress, // Play one frame 50 playAddress, // Play one frame
51 nSongs, // Number of subsongs 51 nSongs, // Number of subsongs
52 startSong; // Default starting song 52 startSong; // Default starting song
53 uint32_t speed; // Speed 53 uint32_t speed; // Speed
54 char sidName[PSID_STR_LEN + 1]; // Descriptive text-fields, ASCIIZ 54 char *sidName; // Descriptive text-fields, ASCIIZ
55 char sidAuthor[PSID_STR_LEN + 1]; 55 char *sidAuthor;
56 char sidCopyright[PSID_STR_LEN + 1]; 56 char *sidCopyright;
57 57
58 // PSIDv2 data 58 // PSIDv2 data
59 uint16_t flags; // Flags 59 uint16_t flags; // Flags
60 uint8_t startPage, pageLength; 60 uint8_t startPage, pageLength;
61 uint16_t reserved; 61 uint16_t reserved;