wok-6.x view linld/stuff/src/_END.ASM @ rev 22854
updated glm (0.9.9.3 -> 0.9.9.7)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 20 13:34:48 2020 +0100 (2020-02-20) |
parents | e7373d3e0818 |
children | d33c3c211ef8 |
line source
1 ;***************************************************************
2 ;****** This file is distributed under GPL
3 ;***************************************************************
4 ideal
5 %crefref
6 %noincl
7 %nomacs
8 p386
10 segment _TEXT byte public use16 'CODE'
11 global _text_end:byte
12 label _text_end byte
13 ends _TEXT
15 segment _DATA byte public use16 'DATA'
16 global _data_end:byte
17 label _data_end byte
18 ends _DATA
20 segment _BSS byte public use16 'BSS'
21 STACK_SIZE = 1024
23 global _version_string:byte
24 label _version_string byte
25 db STACK_SIZE dup(?)
26 global stktop:byte
27 label stktop byte
28 global _bss_end:byte
29 label _bss_end byte
30 ends _BSS
32 end
34 ;###### END OF FILE ############################################