diff src/script.c @ 306:be1abc4ac114

Corrected errors with parsing script and object files
author lost
date Fri, 23 Jan 2009 04:03:37 +0000
parents 13272197d278
children 87c4e65074f0
line wrap: on
line diff
--- a/src/script.c	Thu Jan 22 02:14:52 2009 +0000
+++ b/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"