wok-6.x diff linld/stuff/src/_END.ASM @ rev 22288

linld: 8086 may load zImage (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 13 15:08:02 2019 +0100 (2019-11-13)
parents
children a31ec0e0df8e
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/linld/stuff/src/_END.ASM	Wed Nov 13 15:08:02 2019 +0100
     1.3 @@ -0,0 +1,27 @@
     1.4 +;***************************************************************
     1.5 +;****** This file is distributed under GPL
     1.6 +;***************************************************************
     1.7 +                ideal
     1.8 +                %crefref
     1.9 +                %noincl
    1.10 +                %nomacs
    1.11 +                p386
    1.12 +
    1.13 +        segment _TEXT byte public use16 'CODE'
    1.14 +        global  _text_end:byte
    1.15 +        label   _text_end byte
    1.16 +        ends    _TEXT
    1.17 +
    1.18 +        segment _DATA byte public use16 'DATA'
    1.19 +        global  _data_end:byte
    1.20 +        label   _data_end byte
    1.21 +        ends    _DATA
    1.22 +
    1.23 +        segment _BSS byte public use16 'BSS'
    1.24 +        global  _bss_end:byte
    1.25 +        label   _bss_end byte
    1.26 +        ends    _BSS
    1.27 +
    1.28 +        end
    1.29 +
    1.30 +;###### END OF FILE ############################################