Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _TIFLOAT_H
  2. #define _TIFLOAT_H
  3. /* tifloat.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS                                                                        */
  8. /*                                                                           */
  9. /* IEEE -> TI DSP Floating Point Conversion on host                          */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. #include "datatypes.h"
  14.  
  15. extern int as_float_2_ti2(as_float_t inp, Word *p_dest);
  16.  
  17. extern int as_float_2_ti4(as_float_t inp, LongWord *p_dest);
  18.  
  19. extern int as_float_2_ti5(as_float_t Inp, LongWord *p_dest_l, LongWord *p_dest_h);
  20.  
  21. #endif /* _TIFLOAT_H */
  22.