From: Alan Cox Date: Thu, 14 May 2015 20:22:07 +0000 (+0100) Subject: z80pack,plus3: update to new binman packing X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=08d035c11fc05adf2b48a91bf98482760a7e53f5;p=FUZIX.git z80pack,plus3: update to new binman packing --- diff --git a/Kernel/platform-plus3/crt0.s b/Kernel/platform-plus3/crt0.s index f1025b97..2d93b0fe 100644 --- a/Kernel/platform-plus3/crt0.s +++ b/Kernel/platform-plus3/crt0.s @@ -10,8 +10,8 @@ .area _CODE3 .area _CONST .area _VIDEO - .area _DATA .area _INITIALIZED + .area _DATA .area _BSEG .area _BSS .area _HEAP @@ -64,7 +64,7 @@ init1: call init_early ; move the common memory where it belongs - ld hl, #s__INITIALIZER + ld hl, #s__DATA ld de, #s__COMMONMEM ld bc, #l__COMMONMEM ldir diff --git a/Kernel/platform-z80pack-lite/crt0.s b/Kernel/platform-z80pack-lite/crt0.s index f37a4b35..ee431eb4 100644 --- a/Kernel/platform-z80pack-lite/crt0.s +++ b/Kernel/platform-z80pack-lite/crt0.s @@ -9,8 +9,8 @@ .area _CODE .area _CODE2 .area _CONST - .area _DATA .area _INITIALIZED + .area _DATA .area _BSEG .area _BSS .area _HEAP @@ -43,8 +43,8 @@ init: ; Configure memory map call init_early - ; move the common memory where it belongs - ld hl, #s__INITIALIZER + ; move the common memory where it belongs + ld hl, #s__DATA ld de, #s__COMMONMEM ld bc, #l__COMMONMEM ldir diff --git a/Kernel/platform-z80pack/crt0.s b/Kernel/platform-z80pack/crt0.s index 5594f375..027a3034 100644 --- a/Kernel/platform-z80pack/crt0.s +++ b/Kernel/platform-z80pack/crt0.s @@ -9,8 +9,8 @@ .area _CODE .area _CODE2 .area _CONST - .area _DATA .area _INITIALIZED + .area _DATA .area _BSEG .area _BSS .area _HEAP @@ -45,7 +45,7 @@ init: call init_early ; move the common memory where it belongs - ld hl, #s__INITIALIZER + ld hl, #s__DATA ld de, #s__COMMONMEM ld bc, #l__COMMONMEM ldir