Subversion Repositories pentevo

Rev

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

  1. #ifndef _INTPSEUDO_H
  2. #define _INTPSEUDO_H
  3. /* intpseudo.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS-Portierung                                                             */
  8. /*                                                                           */
  9. /* Commonly used 'Intel Style' Pseudo Instructions                           */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. #include "datatypes.h"
  14.  
  15. typedef enum
  16. {
  17.   eSyntaxNeither = 0,
  18.   eSyntax808x = 1,
  19.   eSyntaxZ80 = 2,
  20.   eSyntaxBoth = 3
  21. } tZ80Syntax;
  22.  
  23. extern tZ80Syntax CurrZ80Syntax;
  24.  
  25. /*****************************************************************************
  26.  * Global Functions
  27.  *****************************************************************************/
  28.  
  29. typedef enum
  30. {
  31.   eIntPseudoFlag_None = 0,
  32.   eIntPseudoFlag_EndianMask = 3 << 0,
  33.   eIntPseudoFlag_NoEndian = 0 << 0,
  34.   eIntPseudoFlag_LittleEndian = 1 << 0,
  35.   eIntPseudoFlag_BigEndian = 2 << 0,
  36.   eIntPseudoFlag_DynEndian = 3 << 0,
  37.   eIntPseudoFlag_AllowInt = 1 << 2,
  38.   eIntPseudoFlag_AllowFloat = 1 << 3,
  39.   eIntPseudoFlag_AllowString = 1 << 4,
  40.   eIntPseudoFlag_DECFormat = 1 << 5,
  41.   eIntPseudoFlag_Turn = 1 << 6,
  42.   eIntPseudoFlag_DECGFormat = 1 << 7,
  43.   eIntPseudoFlag_DECFormats = eIntPseudoFlag_DECFormat | eIntPseudoFlag_DECGFormat,
  44.   eIntPseudoFlag_ASCIZ = 1 << 8,
  45.   eIntPseudoFlag_ASCIC = 1 << 9,
  46.   eIntPseudoFlag_ASCID = eIntPseudoFlag_ASCIZ | eIntPseudoFlag_ASCIC,
  47.   eIntPseudoFlag_ASCIAll = eIntPseudoFlag_ASCIZ | eIntPseudoFlag_ASCIC,
  48.   eIntPseudoFlag_MotoRep = 1 << 10
  49. } int_pseudo_flags_t;
  50.  
  51. #ifdef __cplusplus
  52. #include "intpseudo.hpp"
  53. #endif
  54.  
  55. struct sInstTable;
  56.  
  57. extern void DecodeIntelDN(Word Flags);
  58. extern void DecodeIntelDB(Word Flags);
  59. extern void DecodeIntelDW(Word Flags);
  60. extern void DecodeIntelDD(Word Flags);
  61. extern void DecodeIntelDM(Word Flags);
  62. extern void DecodeIntelDQ(Word Flags);
  63. extern void DecodeIntelDT(Word Flags);
  64. extern void DecodeIntelDO(Word Flags);
  65. extern void DecodeIntelDS(Word Flags);
  66.  
  67. extern void AddIntelPseudo(struct sInstTable *p_inst_table, int_pseudo_flags_t flags);
  68.  
  69. extern void AddZ80Syntax(struct sInstTable *InstTable);
  70.  
  71. extern Boolean ChkZ80Syntax(tZ80Syntax InstrSyntax);
  72.  
  73. #endif /* _INTPSEUDO_H */
  74.