From 23b19d2aee2c56da534977b7f0429e55a7014381 Mon Sep 17 00:00:00 2001 From: Tormod Volden Date: Tue, 14 Apr 2015 23:23:11 +0200 Subject: [PATCH] crt0_6809.s: Set load page value for dragon-nx32 This must be changed back for e.g. the "dragon" port. Clearly this must be done in a better way. Signed-off-by: Tormod Volden --- Library/libs/crt0_6809.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/libs/crt0_6809.s b/Library/libs/crt0_6809.s index 1f332c12..6cff08aa 100644 --- a/Library/libs/crt0_6809.s +++ b/Library/libs/crt0_6809.s @@ -16,8 +16,8 @@ start: jmp start2 ; ; FIXME: we need to automate the load page setting ; - .db 0x01 ; page to load at - .dw 0 ; chmem ("0 - 'all'") + .db 0x80 ; page to load at + .dw 0 ; chmem ("0 - 'all'") .dw __sectionlen_.text__ ; gives us code size info .dw __sectionlen_.data__ ; gives us data size info .dw __sectionlen_.bss__ ; bss size info -- 2.34.1