dect
/
asl
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
asl/codepseudo.h

38 lines
1.3 KiB
C
Raw Permalink Normal View History

/* codepseudo.h */
/*****************************************************************************/
/* AS-Portierung */
/* */
/* Haeufiger benutzte Pseudo-Befehle */
/* */
/* Historie: 23. 5.1996 Grundsteinlegung */
/* */
/*****************************************************************************/
typedef struct
{
char *Name;
LongInt *Dest;
LongInt Min,Max;
LongInt NothingVal;
} ASSUMERec;
extern int FindInst(void *Field, int Size, int Count);
extern Boolean IsIndirect(char *Asc);
extern void ConvertDec(Double F, Word *w);
extern Boolean DecodeIntelPseudo(Boolean Turn);
extern Boolean DecodeMotoPseudo(Boolean Turn);
extern void AddMoto16PseudoONOFF(void);
extern Boolean DecodeMoto16Pseudo(ShortInt OpSize, Boolean Turn);
extern void CodeEquate(ShortInt DestSeg, LargeInt Min, LargeInt Max);
extern void CodeASSUME(ASSUMERec *Def, Integer Cnt);
extern void codepseudo_init(void);