diff lwlink/trunk/src/script.c @ 124:4ac96c697ef0

Corrected errors with parsing script and object files
author lost
date Fri, 23 Jan 2009 04:03:37 +0000
parents 7bc853cb2ca9
children f9bfc2986023
line wrap: on
line diff
--- a/lwlink/trunk/src/script.c	Thu Jan 22 02:14:52 2009 +0000
+++ b/lwlink/trunk/src/script.c	Fri Jan 23 04:03:37 2009 +0000
@@ -35,7 +35,7 @@
 
 // the built-in DECB target linker script
 static char *decb_script =
-	"section init load at 2000\n"
+	"section init load 2000\n"
 	"section code\n"
 	"section *,!bss\n"
 	"section *,bss\n"
@@ -44,7 +44,7 @@
 
 // the built-in RAW target linker script
 static char *raw_script = 
-	"section init load at 0000\n"
+	"section init load 0000\n"
 	"section code\n"
 	"section *,!bss\n"
 	"section *,bss\n"