Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1186 | savelij | 1 | #ifndef _ASMDEBUG_H |
2 | #define _ASMDEBUG_H |
||
3 | /* asmdebug.h */ |
||
4 | /*****************************************************************************/ |
||
5 | /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only */ |
||
6 | /* */ |
||
7 | /* AS-Portierung */ |
||
8 | /* */ |
||
9 | /* Verwaltung der Debug-Informationen zur Assemblierzeit */ |
||
10 | /* */ |
||
11 | /* Historie: 16. 5.1996 Grundsteinlegung */ |
||
12 | /* */ |
||
13 | /*****************************************************************************/ |
||
14 | |||
15 | extern void AddLineInfo(Boolean InMacro, LongInt LineNum, char *FileName, |
||
16 | ShortInt Space, LargeInt Address, LargeInt Len); |
||
17 | |||
18 | extern void InitLineInfo(void); |
||
19 | |||
20 | extern void ClearLineInfo(void); |
||
21 | |||
22 | extern void DumpDebugInfo(void); |
||
23 | |||
24 | extern void asmdebug_init(void); |
||
25 | #endif /* _ASMDEBUG_H */ |