24 #define RESID_BRANCH_HINTS 1
27 #define HAVE_BUILTIN_EXPECT 1
30 #if RESID_BRANCH_HINTS && HAVE_BUILTIN_EXPECT
31 # define likely(x) __builtin_expect(!!(x), 1)
32 # define unlikely(x) __builtin_expect(!!(x), 0)
34 # define likely(x) (x)
35 # define unlikely(x) (x)
40 typedef enum { MOS6581=1, MOS8580 } ChipModel;
42 typedef enum { AVERAGE=1, WEAK, STRONG } CombinedWaveforms;
44 typedef enum { DECIMATE=1, RESAMPLE } SamplingMethod;
49 #ifndef __VERSION_CC__
50 extern const char* residfp_version_string;
52 const char* residfp_version_string =
"2.12.0";
57 #define RESID_INLINING 1
58 #define RESID_INLINE inline