dos33fsprogs/gr-sim/tfv/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-21 22:29:45 -05:00
#define FIXEDPT 42
2017-08-17 16:00:48 -04:00
2017-09-11 23:11:47 -04:00
#if (FIXEDPT==0)
#include "tfv_flying_float.c"
#elif (FIXEDPT==1)
#include "tfv_flying_fixed.c"
2017-09-11 23:11:47 -04:00
#else
#include "tfv_flying_6502.c"
2017-09-11 23:11:47 -04:00
#endif
2017-08-17 16:00:48 -04:00