Subversion Repositories pentevo

Rev

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

  1. #ifndef _MOTPSEUDO_H
  2. #define _MOTPSEUDO_H
  3. /* motpseudo.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS-Portierung                                                             */
  8. /*                                                                           */
  9. /* Haeufiger benutzte Motorola-Pseudo-Befehle                                */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. #include "symbolsize.h"
  14.  
  15. /*****************************************************************************
  16.  * Global Functions
  17.  *****************************************************************************/
  18.  
  19. struct sStrComp;
  20.  
  21. extern void DecodeMotoBYT(Word flags);
  22. extern void DecodeMotoADR(Word flags);
  23. extern void DecodeMotoDFS(Word flags);
  24.  
  25. typedef enum
  26. {
  27.  e_moto_pseudo_flags_none = 0,
  28.  e_moto_pseudo_flags_le = 0 << 0,
  29.  e_moto_pseudo_flags_be = 1 << 0,
  30. #if 0
  31.  e_moto_pseudo_flags_db = 1 << 1,
  32.  e_moto_pseudo_flags_dw = 1 << 2,
  33. #endif
  34.  e_moto_pseudo_flags_ds = 1 << 3,
  35.  e_moto_pseudo_flags_ddb = 1 << 4,
  36.  e_moto_pseudo_flags_dcm = 1 << 5
  37. } moto_pseudo_flags_t;
  38.  
  39. #ifdef __cplusplus
  40. #include "motpseudo.hpp"
  41. #endif
  42.  
  43. struct sInstTable;
  44. extern void add_moto8_pseudo(struct sInstTable *p_inst_table, moto_pseudo_flags_t flags);
  45.  
  46. extern int ConvertMotoFloatDec(as_float_t F, Byte *pDest, Boolean NeedsBig);
  47.  
  48. extern void AddMoto16PseudoONOFF(Boolean default_paddding_value);
  49.  
  50. extern void DecodeMotoDC(Word flags);
  51. extern void DecodeMotoDS(Word flags);
  52.  
  53. extern void AddMoto16Pseudo(struct sInstTable *p_inst_table, moto_pseudo_flags_t flags);
  54.  
  55. extern Boolean DecodeMoto16AttrSize(char SizeSpec, tSymbolSize *pResult, Boolean Allow24);
  56.  
  57. extern Boolean DecodeMoto16AttrSizeStr(const struct sStrComp *pSizeSpec, tSymbolSize *pResult, Boolean Allow24);
  58.  
  59. #endif /* _MOTPSEUDO_H */
  60.