dos33fsprogs/gr-sim/tfv_flying.c

15 lines
264 B
C
Raw Normal View History

// 0 = use fancy hi-res floating point
// 1 = use reduced fixed point
// 2 = use 6502 instrumented code
2017-11-22 03:29:45 +00:00
#define FIXEDPT 42
2017-08-17 20:00:48 +00:00
2017-09-12 03:11:47 +00:00
#if (FIXEDPT==0)
#include "tfv_flying_float.c"
#elif (FIXEDPT==1)
#include "tfv_flying_fixed.c"
2017-09-12 03:11:47 +00:00
#else
#include "tfv_flying_6502.c"
2017-09-12 03:11:47 +00:00
#endif
2017-08-17 20:00:48 +00:00