From: cpg Date: Thu, 23 Oct 2003 19:41:05 +0000 (+0000) Subject: changes from Stefan A. Haubenthal X-Git-Tag: V2.12.0~1220 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2ee677870583f14d06b1e173fca422e86d0209ce;p=cc65 changes from Stefan A. Haubenthal git-svn-id: svn://svn.cc65.org/cc65/trunk@2574 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/doc/atari.sgml b/doc/atari.sgml index c9e640d9e..324c80e22 100644 --- a/doc/atari.sgml +++ b/doc/atari.sgml @@ -4,7 +4,7 @@ Atari specific information for cc65 <author>Shawn Jefferson, <htmlurl url="mailto:shawnjefferson@24fightingchickens.com" name="shawnjefferson@24fightingchickens.com"> -Christian Groessler, <htmlurl url="cpg@aladdin.de" name="cpg@aladdin.de"> +Christian Groessler, <htmlurl url="mailto:cpg@aladdin.de" name="cpg@aladdin.de"> <date>16-Oct-2003 <abstract> @@ -47,7 +47,7 @@ and is calculated using __CODE_LOAD__ in crt0.s also. <sect>Memory layout<p> The default linker script assumes that the BASIC ROM is disabled (or -the BASIC cartridge unplugged). This gives a unsable memory range from +the BASIC cartridge unplugged). This gives a usable memory range from $2E00 - $BC1F. The library startup code examines the current memory configuration, which depends on the size of the installed memory and cartridges present, by inspecting the value in diff --git a/src/ld65/cfg/atari.cfg b/src/ld65/cfg/atari.cfg index fbe5e10c0..03ecb7ba1 100644 --- a/src/ld65/cfg/atari.cfg +++ b/src/ld65/cfg/atari.cfg @@ -1,7 +1,7 @@ MEMORY { ZP: start = $82, size = $7E, type = rw, define = yes; HEADER: start = $0000, size = $6, file = %O; - RAM: start = $2E00, size = $8E1F, file = %O; # $8E1F: matches upper bound $BC1F + RAM: start = $2E00, size = $8E20, file = %O; # $8E1F: matches upper bound $BC1F } SEGMENTS { EXEHDR: load = HEADER, type = wprot;