forked from Macroassembler-AS/asl-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasmcode.h
34 lines (25 loc) · 1.23 KB
/
asmcode.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef _ASMCODE_H
#define _ASMCODE_H
/* asmcode.h */
/*****************************************************************************/
/* AS-Portierung */
/* */
/* Verwaltung der Code-Datei */
/* */
/* Historie: 18. 5.1996 Grundsteinlegung */
/* 19. 1.2000 Patchliste angelegt */
/* 26. 6.2000 added exports */
/* */
/*****************************************************************************/
extern Word LenSoFar;
extern LongInt RecPos, SectSymbolCounter;
extern PPatchEntry PatchList, PatchLast;
extern PExportEntry ExportList, ExportLast;
extern void DreheCodes(void);
extern void NewRecord(LargeWord NStart);
extern void OpenFile(void);
extern void CloseFile(void);
extern void WriteBytes(void);
extern void RetractWords(Word Cnt);
extern void asmcode_init(void);
#endif /* _ASMCODE_H */