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 "") {