changes from Stefan A. Haubenthal

git-svn-id: svn://svn.cc65.org/cc65/trunk@2574 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg
2003-10-23 19:41:05 +00:00
parent 39ad3d6da0
commit 2ee6778705
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
<title>Atari specific information for cc65 <title>Atari specific information for cc65
<author>Shawn Jefferson, <htmlurl url="mailto:shawnjefferson@24fightingchickens.com" name="shawnjefferson@24fightingchickens.com"> <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 <date>16-Oct-2003
<abstract> <abstract>
@@ -47,7 +47,7 @@ and is calculated using __CODE_LOAD__ in crt0.s also.
<sect>Memory layout<p> <sect>Memory layout<p>
The default linker script assumes that the BASIC ROM is disabled (or 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 &dollar;2E00 - &dollar;BC1F. The library startup code examines the
current memory configuration, which depends on the size of the current memory configuration, which depends on the size of the
installed memory and cartridges present, by inspecting the value in installed memory and cartridges present, by inspecting the value in

View File

@@ -1,7 +1,7 @@
MEMORY { MEMORY {
ZP: start = $82, size = $7E, type = rw, define = yes; ZP: start = $82, size = $7E, type = rw, define = yes;
HEADER: start = $0000, size = $6, file = %O; 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 { SEGMENTS {
EXEHDR: load = HEADER, type = wprot; EXEHDR: load = HEADER, type = wprot;