forked from Clownacy/asl-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasmcode.h
41 lines (29 loc) · 1.47 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
35
36
37
38
39
40
41
#ifndef _ASMCODE_H
#define _ASMCODE_H
/* asmcode.h */
/*****************************************************************************/
/* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only */
/* */
/* AS-Portierung */
/* */
/* Verwaltung der Code-Datei */
/* */
/* Historie: 18. 5.1996 Grundsteinlegung */
/* 19. 1.2000 Patchliste angelegt */
/* 26. 6.2000 added exports */
/* */
/*****************************************************************************/
#include "asmdef.h"
#include "datatypes.h"
extern LongInt 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 InsertPadding(unsigned NumBytes, Boolean OnlyReserve);
extern void asmcode_init(void);
#endif /* _ASMCODE_H */