From 9d01fba1d73c69d2a6669e8b2f37ab88002e1478 Mon Sep 17 00:00:00 2001 From: Tormod Volden Date: Tue, 14 Apr 2015 23:23:09 +0200 Subject: [PATCH] crt0_6809.s: Fix typo in linker symbols strings Signed-off-by: Tormod Volden --- Library/libs/crt0_6809.s | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/libs/crt0_6809.s b/Library/libs/crt0_6809.s index c71eea59..11e3ccf6 100644 --- a/Library/libs/crt0_6809.s +++ b/Library/libs/crt0_6809.s @@ -18,9 +18,9 @@ start: jmp start2 ; .db 0x01 ; 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 + .dw __sectionlen_.text__ ; gives us code size info + .dw __sectionlen_.data__ ; gives us data size info + .dw __sectionlen_.bss__ ; bss size info .dw 0 ; spare start2: -- 2.34.1