Atari specific information for cc65
Shawn Jefferson,
Christian Groessler,
-16-Oct-2003
+14-Sep-2004
An overview over the Atari runtime system as it is implemented for the cc65 C
@@ -35,13 +35,15 @@ information.
The standard binary output format generated by the linker for the
Atari target is a machine language program with a standard executable
-header (FF FF <start address> <end address>). These values are
-calculated in the crt0.s file from the __CODE_LOAD__ and __BSS_LOAD__
-values, so keep this in mind if you create a custom linker config file
-and start moving segments around. You can override this behaviour by
-creating your own crt0.s file and linking it into your program. A run
-vector is added to the end of the file ($02E0 <run vector>)
-and is calculated using __CODE_LOAD__ in crt0.s also.
+header (FF FF <2 byte start address> <2 bytes end address>
+[program bytes]). These values are calculated in the crt0.s
+file from the __CODE_LOAD__ and __BSS_LOAD__ values, so keep this in
+mind if you create a custom linker config file and start moving
+segments around (see section ). You can
+override this behaviour by creating your own crt0.s file and linking
+it into your program. A run vector is added to the end of the file
+($02E0 <run vector>) and is calculated using
+__CODE_LOAD__ in crt0.s.
Memory layout
@@ -71,7 +73,8 @@ Special locations:
accomodates the different memory configurations of the Atari
machines, as well as having a cartridge installed. You can override
this behaviour by writing your own crt0.s file and linking it to
- your program.
+ your program (see also ).
Reserving a memory area inside the program