]> git.sur5r.net Git - cc65/commitdiff
changes from Stefan A. Haubenthal
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 23 Oct 2003 19:41:05 +0000 (19:41 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 23 Oct 2003 19:41:05 +0000 (19:41 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2574 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/atari.sgml
src/ld65/cfg/atari.cfg

index c9e640d9ed13d1aa9e8b8100319b97725e5b62d2..324c80e22caa9f56bcc4bf74449b827668f967e1 100644 (file)
@@ -4,7 +4,7 @@
 
 <title>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
 &dollar;2E00 - &dollar;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
index fbe5e10c0fa62cfa33ab93c6c1e7f14e3b899d41..03ecb7ba1a17f26f15a350007fcf1114e0863348 100644 (file)
@@ -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;