home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 326.lha / KFFT_v1.1 / fftcontrols < prev    next >
Text File  |  1989-12-23  |  885b  |  24 lines

  1. \ FFT compilation controls.
  2. \ Change true/false flag on left to set control on the right.
  3. \ Logic is present to preclude invalid combinations of settings.
  4. \ This is mainly a convenience to allow changing a parameter like
  5. \ float_fft? without having to manually change other paramters to
  6. \ be consistant.  Some options are only available with floating
  7. \ point and other options are only available with fixed point versions.
  8.  
  9. anew task-fftcontrols
  10.  
  11. false                           CONSTANT  float_fft?
  12. true                            CONSTANT  asm_fft?
  13. true        float_fft? NOT OR   CONSTANT  w_table_fft?
  14.  
  15. float_fft? NOT    asm_fft? AND  CONSTANT  fixasm_fft?
  16.  
  17. true           fixasm_fft? AND  CONSTANT  inner_asm_fft?
  18. true           fixasm_fft? AND  CONSTANT  auto_scale_fft?
  19.  
  20. version# 2000 >=                CONSTANT  jforth2?
  21.  
  22. 16     CONSTANT max_log2_fft
  23. 14     CONSTANT scale_fft
  24.