libsidplayfp  0.3.5
SidTuneCfg.h
1 /* SidTuneCfg.h (template) */
2 
3 #ifndef SIDTUNECFG_H
4 #define SIDTUNECFG_H
5 
6 #include "config.h"
7 
8 /* Define to add PSID2NG support */
9 #define SIDTUNE_PSID2NG
10 
11 /* Minimum load address for real c64 only tunes */
12 #define SIDTUNE_R64_MIN_LOAD_ADDR 0x07e8
13 
14 
15 /* --------------------------------------------------------------------------
16  * Don't touch these!
17  * --------------------------------------------------------------------------
18  */
19 #undef SIDTUNE_NO_STDIN_LOADER
20 #undef SIDTUNE_REJECT_UNKNOWN_FIELDS
21 
22 
23 /* Define the file/path separator(s) that your filesystem uses:
24  SID_FS_IS_COLON_AND_BACKSLASH, SID_FS_IS_COLON_AND_SLASH,
25  SID_FS_IS_BACKSLASH, SID_FS_IS_COLON, SID_FS_IS_SLASH */
26 #if defined(HAVE_MSWINDOWS) || defined(HAVE_MSDOS) || defined(HAVE_OS2)
27  #define SID_FS_IS_COLON_AND_BACKSLASH_AND_SLASH
28 #elif defined(HAVE_MACOS)
29  #define SID_FS_IS_COLON
30 #elif defined(HAVE_AMIGAOS)
31  #define SID_FS_IS_COLON_AND_SLASH
32 #else
33  #define SID_FS_IS_SLASH
34 #endif
35 
36 #endif /* SIDTUNECFG_H */