36 lines
959 B
Plaintext
36 lines
959 B
Plaintext
/* SidTuneCfg.h (template) */
|
|
|
|
#ifndef SIDTUNECFG_H
|
|
#define SIDTUNECFG_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
/* Minimum load address for real c64 only tunes */
|
|
#define SIDTUNE_R64_MIN_LOAD_ADDR 0x07e8
|
|
|
|
|
|
/* --------------------------------------------------------------------------
|
|
* Don't touch these!
|
|
* --------------------------------------------------------------------------
|
|
*/
|
|
#undef SIDTUNE_NO_STDIN_LOADER
|
|
#undef SIDTUNE_REJECT_UNKNOWN_FIELDS
|
|
|
|
|
|
/* Define the file/path separator(s) that your filesystem uses:
|
|
SID_FS_IS_COLON_AND_BACKSLASH, SID_FS_IS_COLON_AND_SLASH,
|
|
SID_FS_IS_BACKSLASH, SID_FS_IS_COLON, SID_FS_IS_SLASH */
|
|
#if defined(_WIN32) || defined(_MSDOS) || defined(_OS2)
|
|
#define SID_FS_IS_COLON_AND_BACKSLASH_AND_SLASH
|
|
#elif defined(__APPLE__) && defined(__MACH__)
|
|
#define SID_FS_IS_COLON
|
|
#elif defined(AMIGA)
|
|
#define SID_FS_IS_COLON_AND_SLASH
|
|
#else
|
|
#define SID_FS_IS_SLASH
|
|
#endif
|
|
|
|
#endif /* SIDTUNECFG_H */
|