wok view linld/stuff/src/_END.ASM @ rev 24019

syslinux: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 28 16:32:57 2021 +0000 (2021-02-28)
parents bc4b94310a29
children
line source
1 ;***************************************************************
2 ;****** This file is distributed under GPL
3 ;***************************************************************
4 ideal
5 %crefref
6 %noincl
7 %nomacs
9 include "common.inc"
11 p8086
13 segment _TEXT byte public use16 'CODE'
14 ;global _text_end:byte
15 label _text_end byte
16 ends _TEXT
18 segment _DATA byte public use16 'DATA'
19 ;global _data_end:byte
20 label _data_end byte
21 ifdef ISOHOOK
22 global _big_cmdline:byte
23 _big_cmdline db 0
24 endif
25 ends _DATA
27 segment _BSS word public use16 'BSS'
28 ;STACK_SIZE = 128
29 STACK_SIZE = 256
30 db STACK_SIZE dup(?)
31 global stktop:byte
32 label stktop byte
33 global _bss_end:byte
34 label _bss_end byte
35 ends _BSS
37 end
39 ;###### END OF FILE ############################################