From 76b41b3f9a59f141981b5b3c371f2ef1bbb47674 Mon Sep 17 00:00:00 2001 From: cuz Date: Fri, 13 Dec 2002 11:26:21 +0000 Subject: [PATCH] Fixed a typo git-svn-id: svn://svn.cc65.org/cc65/trunk@1763 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ld65/cfg/atmos.cfg | 2 +- src/ld65/cfg/cvt-cfg.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ld65/cfg/atmos.cfg b/src/ld65/cfg/atmos.cfg index 48010c015..3c2e048ff 100644 --- a/src/ld65/cfg/atmos.cfg +++ b/src/ld65/cfg/atmos.cfg @@ -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; diff --git a/src/ld65/cfg/cvt-cfg.pl b/src/ld65/cfg/cvt-cfg.pl index c03dd4633..c02c2a7d9 100755 --- a/src/ld65/cfg/cvt-cfg.pl +++ b/src/ld65/cfg/cvt-cfg.pl @@ -41,7 +41,7 @@ while ($Line = ) { $Line =~ s/\'/\\\'/g; # Print to output - print OUT "\"$Line\""; + print OUT "\"$Line\\n\""; # Add a comment if we have one if ($Comment ne "") {