Subversion Repositories pentevo

Rev

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

  1. #ifndef _TIPSEUDO_H
  2. #define _TIPSEUDO_H
  3. /* tipseudo.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS-Portierung                                                             */
  8. /*                                                                           */
  9. /* Haeufiger benutzte Texas Instruments Pseudo-Befehle                       */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. #include "bpemu.h"
  14.  
  15. /*****************************************************************************
  16.  * Global Functions
  17.  *****************************************************************************/
  18.  
  19. struct sInstTable;
  20.  
  21. extern Boolean DecodeTIPseudo(void);
  22.  
  23. extern Boolean IsTIDef(void);
  24.  
  25. extern Boolean ExtToTIC34xShort(Double Inp, Word *Erg);
  26.  
  27. extern Boolean ExtToTIC34xSingle(Double Inp, LongWord *Erg);
  28.  
  29. extern Boolean ExtToTIC34xExt(Double Inp, LongWord *ErgL, LongWord *ErgH);
  30.  
  31. extern void AddTI34xPseudo(struct sInstTable *pInstTable);
  32.  
  33. #endif /* _TIPSEUDO_H */
  34.