From 08d035c11fc05adf2b48a91bf98482760a7e53f5 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Thu, 14 May 2015 21:22:07 +0100 Subject: [PATCH] z80pack,plus3: update to new binman packing --- Kernel/platform-plus3/crt0.s | 4 ++-- Kernel/platform-z80pack-lite/crt0.s | 6 +++--- Kernel/platform-z80pack/crt0.s | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) 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 -- 2.34.1