dos33fsprogs/utils/gr-sim/tfv/tfv_flying.c
Vince Weaver b1238af49d re-arranged the entire directory structure
this will probably upset people
2021-01-05 15:29:31 -05:00

15 lines
264 B
C

// 0 = use fancy hi-res floating point
// 1 = use reduced fixed point
// 2 = use 6502 instrumented code
#define FIXEDPT 42
#if (FIXEDPT==0)
#include "tfv_flying_float.c"
#elif (FIXEDPT==1)
#include "tfv_flying_fixed.c"
#else
#include "tfv_flying_6502.c"
#endif