comparison sidlib.h @ 132:b3e034b8c4b9

Change how certain flags (for SID model and clock) are handled.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 02 Jun 2017 02:38:41 +0300
parents c2d2369feadc
children 9cfa0553e7f9
comparison
equal deleted inserted replaced
131:c2d2369feadc 132:b3e034b8c4b9
70 } PSIDHeader; 70 } PSIDHeader;
71 71
72 72
73 enum 73 enum
74 { 74 {
75 PSF_PLAYER_TYPE = 0x0001, // 0 = built-in, 1 = Compute! SIDPlayer MUS 75 PSF_PLAYER_TYPE = 0x01, // 0 = built-in, 1 = Compute! SIDPlayer MUS
76 PSF_PLAYSID_TUNE = 0x0002, // 0 = Real C64-compatible, 1 = PlaySID specific (v2NG) 76 PSF_PLAYSID_TUNE = 0x02, // 0 = Real C64-compatible, 1 = PlaySID specific (v2NG)
77 77
78 PSF_CLOCK_UNKNOWN = 0x0000, // Video standard used (v2NG) 78 PSF_CLOCK_UNKNOWN = 0x00, // Video standard used (v2NG+)
79 PSF_CLOCK_PAL = 0x0004, 79 PSF_CLOCK_PAL = 0x01,
80 PSF_CLOCK_NTSC = 0x0008, 80 PSF_CLOCK_NTSC = 0x02,
81 PSF_CLOCK_ANY = 0x000c, 81 PSF_CLOCK_ANY = 0x03,
82 PSF_CLOCK_MASK = 0x000c, 82 PSF_CLOCK_MASK = 0x03,
83 83
84 PSF_MODEL_UNKNOWN = 0x0000, // SID model (v2NG) 84 PSF_MODEL_UNKNOWN = 0x00, // SID model (v2NG+)
85 PSF_MODEL_MOS6581 = 0x0010, 85 PSF_MODEL_MOS6581 = 0x01,
86 PSF_MODEL_MOS8580 = 0x0020, 86 PSF_MODEL_MOS8580 = 0x02,
87 PSF_MODEL_ANY = 0x0030, 87 PSF_MODEL_ANY = 0x03,
88 PSF_MODEL_MASK = 0x0030, 88 PSF_MODEL_MASK = 0x03,
89 }; 89 };
90 90
91 91
92 // 92 //
93 // Functions 93 // Functions