wok-current view linld/stuff/src/_END.ASM @ rev 24013

linld: add quick boot switch
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 18 08:56:43 2021 +0000 (2021-02-18)
parents a946c1651082
children 61df94a0fa43
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 ISOHOOK
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 = 128
26 STACK_SIZE = 512
27 db STACK_SIZE dup(?)
28 global stktop:byte
29 label stktop byte
30 global _bss_end:byte
31 label _bss_end byte
32 ends _BSS
34 end
36 ;###### END OF FILE ############################################