]> git.sur5r.net Git - cc65/commitdiff
Fixed a typo
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 13 Dec 2002 11:26:21 +0000 (11:26 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 13 Dec 2002 11:26:21 +0000 (11:26 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1763 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfg/atmos.cfg
src/ld65/cfg/cvt-cfg.pl

index 48010c015d9408c9983df34f0aa6bc2fb6bbfb5c..3c2e048ff7d28eb536978034e507d4a4a9a7ac4c 100644 (file)
@@ -3,7 +3,7 @@ MEMORY {
     RAM: start = $0600, size = $9200, define = yes, file = %O;
 }
 SEGMENTS {
-    SATRTUP: load = RAM, type = wprot;
+    STARTUP: load = RAM, type = wprot;
     LOWCODE: load = RAM, type = wprot;
     CODE: load = RAM, type = wprot;
     RODATA: load = RAM, type = wprot;
index c03dd46331346ac7ad48af69ac2d8522091281e0..c02c2a7d9957332f0f2d67f7b842be8eae783eca 100755 (executable)
@@ -41,7 +41,7 @@ while ($Line = <IN>) {
     $Line =~ s/\'/\\\'/g;
 
     # Print to output
-    print OUT "\"$Line\"";
+    print OUT "\"$Line\\n\"";
 
     # Add a comment if we have one
     if ($Comment ne "") {