Mercurial > spc_convert
diff snes_spc/blargg_config.h @ 0:e38dacceb958
initial import
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Fri, 21 Oct 2011 05:53:11 -0700 |
parents | |
children |
line wrap: on
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/snes_spc/blargg_config.h Fri Oct 21 05:53:11 2011 -0700 1.3 @@ -0,0 +1,24 @@ 1.4 +// snes_spc 0.9.0 user configuration file. Don't replace when updating library. 1.5 + 1.6 +// snes_spc 0.9.0 1.7 +#ifndef BLARGG_CONFIG_H 1.8 +#define BLARGG_CONFIG_H 1.9 + 1.10 +// Uncomment to disable debugging checks 1.11 +//#define NDEBUG 1 1.12 + 1.13 +// Uncomment to enable platform-specific (and possibly non-portable) optimizations 1.14 +//#define BLARGG_NONPORTABLE 1 1.15 + 1.16 +// Uncomment if automatic byte-order determination doesn't work 1.17 +//#define BLARGG_BIG_ENDIAN 1 1.18 + 1.19 +// Uncomment if you get errors in the bool section of blargg_common.h 1.20 +//#define BLARGG_COMPILER_HAS_BOOL 1 1.21 + 1.22 +// Use standard config.h if present 1.23 +#ifdef HAVE_CONFIG_H 1.24 + #include "config.h" 1.25 +#endif 1.26 + 1.27 +#endif