wok diff linld/stuff/src/_BEG.ASM @ rev 22491
updated apr and apr-dev (1.4.6 -> 1.7.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Dec 31 14:21:42 2019 +0100 (2019-12-31) |
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 Tue Dec 31 14:21:42 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