wok diff linld/stuff/src/_BEG.ASM @ rev 22312

get-LibreOffice: look for available versions
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 14 10:49:19 2019 +0100 (2019-11-14)
parents f0896fb1b287
children 56ee356284c6
line diff
     1.1 --- a/linld/stuff/src/_BEG.ASM	Mon Nov 11 12:29:56 2019 +0100
     1.2 +++ b/linld/stuff/src/_BEG.ASM	Thu Nov 14 10:49:19 2019 +0100
     1.3 @@ -29,14 +29,9 @@
     1.4  
     1.5          segment _BSS byte public use16 'BSS'
     1.6  
     1.7 -STACK_SIZE = 1024
     1.8 -
     1.9          global  _bss_start:byte
    1.10          label   _bss_start byte
    1.11 -        global  _version_string:byte
    1.12 -        label   _version_string byte
    1.13 -		db	STACK_SIZE-2 dup(?)
    1.14 -stktop		dw	?
    1.15 +        global  stktop:byte
    1.16  		ifdef	NO386
    1.17          global  _cpu386:byte
    1.18  _cpu386		db	?
    1.19 @@ -63,7 +58,7 @@
    1.20  		mov	si,offset _bss_start
    1.21  		mov	bx, 0F000h	; cld ; cli & empty string
    1.22  clearbss:
    1.23 -		mov	[si],bl		; clear bss + heap + sp
    1.24 +		mov	[si],bl		; clear bss + heap
    1.25  		inc	si
    1.26  		jne	clearbss
    1.27