wok view linld/stuff/src/_END.ASM @ rev 23999
syslinux/iso2exe: read isolinux.cfg
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jan 12 07:47:12 2021 +0000 (2021-01-12) |
parents | 3d19917d3a03 |
children | bc4b94310a29 |
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 ifdef BIG_CMDLINE
19 global _big_cmdline:byte
20 _big_cmdline db 0
21 endif
22 ends _DATA
24 segment _BSS word public use16 'BSS'
25 STACK_SIZE = 256
26 db STACK_SIZE dup(?)
27 global stktop:byte
28 label stktop byte
29 global _bss_end:byte
30 label _bss_end byte
31 ends _BSS
33 end
35 ;###### END OF FILE ############################################