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 /*****************************************************************************
14  * Global Functions
15  *****************************************************************************/
16 
17 extern void DecodeIntelDN(Word BigEndian);
18 extern void DecodeIntelDB(Word BigEndian);
19 extern void DecodeIntelDW(Word BigEndian);
20 extern void DecodeIntelDD(Word BigEndian);
21 extern void DecodeIntelDQ(Word BigEndian);
22 extern void DecodeIntelDT(Word BigEndian);
23 
24 extern Boolean DecodeIntelPseudo(Boolean BigEndian);
25 
26 #endif /* _INTPSEUDO_H */
27