]> git.sur5r.net Git - cc65/blob - doc/ld65.sgml
2195ca48daa4d05183b0ebc3870b89f2b75ffd1a
[cc65] / doc / ld65.sgml
1 <!doctype linuxdoc system>      <!-- -*- text-mode -*- -->
2
3 <article>
4 <title>ld65 Users Guide
5 <author><url url="mailto:uz@cc65.org" name="Ullrich von Bassewitz">
6
7 <abstract>
8 The ld65 linker combines object files into an executable file. ld65 is highly
9 configurable and uses configuration files for high flexibility.
10 </abstract>
11
12 <!-- Table of contents -->
13 <toc>
14
15 <!-- Begin the document -->
16
17 <sect>Overview<p>
18
19 The ld65 linker combines several object modules created by the ca65
20 assembler, producing an executable file. The object modules may be read
21 from a library created by the ar65 archiver (this is somewhat faster and
22 more convenient). The linker was designed to be as flexible as possible.
23 It complements the features that are built into the ca65 macroassembler:
24
25 <itemize>
26
27 <item>  Accept any number of segments to form an executable module.
28
29 <item>  Resolve arbitrary expressions stored in the object files.
30
31 <item>  In case of errors, use the meta information stored in the object files
32         to produce helpful error messages. In case of undefined symbols,
33         expression range errors, or symbol type mismatches, ld65 is able to
34         tell you the exact location in the original assembler source, where
35         the symbol was referenced.
36
37 <item>  Flexible output. The output of ld65 is highly configurable by a config
38         file. Some more-common platforms are supported by default configurations
39         that may be activated by naming the target system. The output
40         generation was designed with different output formats in mind, so
41         adding other formats shouldn't be a great problem.
42
43 </itemize>
44
45
46 <sect>Usage<p>
47
48
49 <sect1>Command-line option overview<p>
50
51 The linker is called as follows:
52
53 <tscreen><verb>
54 ---------------------------------------------------------------------------
55 Usage: ld65 [options] module ...
56 Short options:
57   -(                    Start a library group
58   -)                    End a library group
59   -C name               Use linker config file
60   -D sym=val            Define a symbol
61   -L path               Specify a library search path
62   -Ln name              Create a VICE label file
63   -S addr               Set the default start address
64   -V                    Print the linker version
65   -h                    Help (this text)
66   -m name               Create a map file
67   -o name               Name the default output file
68   -t sys                Set the target system
69   -u sym                Force an import of symbol 'sym'
70   -v                    Verbose mode
71   -vm                   Verbose map file
72
73 Long options:
74   --cfg-path path       Specify a config file search path
75   --config name         Use linker config file
76   --dbgfile name        Generate debug information
77   --define sym=val      Define a symbol
78   --end-group           End a library group
79   --force-import sym    Force an import of symbol 'sym'
80   --help                Help (this text)
81   --lib file            Link this library
82   --lib-path path       Specify a library search path
83   --mapfile name        Create a map file
84   --module-id id        Specify a module id
85   --obj file            Link this object file
86   --obj-path path       Specify an object file search path
87   --start-addr addr     Set the default start address
88   --start-group         Start a library group
89   --target sys          Set the target system
90   --version             Print the linker version
91 ---------------------------------------------------------------------------
92 </verb></tscreen>
93
94
95 <sect1>Command-line options in detail<p>
96
97 Here is a description of all of the command-line options:
98
99 <descrip>
100
101   <label id="option--start-group">
102   <tag><tt>-(, --start-group</tt></tag>
103
104   Start a library group. The libraries specified within a group are searched
105   multiple times to resolve crossreferences within the libraries. Normally,
106   crossreferences are resolved only within a library, that is the library is
107   searched multiple times. Libraries specified later on the command line
108   cannot reference otherwise unreferenced symbols in libraries specified
109   earlier, because the linker has already handled them. Library groups are
110   a solution for this problem, because the linker will search repeatedly
111   through all libraries specified in the group, until all possible open
112   symbol references have been satisfied.
113
114
115   <tag><tt>-), --end-group</tt></tag>
116
117   End a library group. See the explanation of the <tt><ref
118   id="option--start-group" name="--start-group"></tt> option.
119
120
121   <tag><tt>-h, --help</tt></tag>
122
123   Print the short option summary shown above.
124
125
126   <label id="option-m">
127   <tag><tt>-m name, --mapfile name</tt></tag>
128
129   This option (which needs an argument that will used as a filename for
130   the generated map file) will cause the linker to generate a map file.
131   The map file does contain a detailed overview over the modules used, the
132   sizes for the different segments, and a table containing exported
133   symbols.
134
135
136   <label id="option-o">
137   <tag><tt>-o name</tt></tag>
138
139   The -o switch is used to give the name of the default output file.
140   Depending on your output configuration, this name <em/might not/ be used as the
141   name for the output file. However, for the default configurations, this
142   name is used for the output file name.
143
144
145   <label id="option-t">
146   <tag><tt>-t sys, --target sys</tt></tag>
147
148   The argument for the -t switch is the name of the target system. Since this
149   switch will activate a default configuration, it may not be used together
150   with the <tt><ref id="option-C" name="-C"></tt> option. The following target
151   systems are currently supported:
152
153   <itemize>
154   <item>none
155   <item>module
156   <item>apple2
157   <item>apple2enh
158   <item>atari2600
159   <item>atari
160   <item>atarixl
161   <item>atmos
162   <item>c16 (works also for the c116 with memory up to 32K)
163   <item>c64
164   <item>c128
165   <item>cbm510 (CBM-II series with 40-column video)
166   <item>cbm610 (all CBM series-II computers with 80-column video)
167   <item>geos-apple
168   <item>geos-cbm
169   <item>lunix
170   <item>lynx
171   <item>nes
172   <item>pet (all CBM PET systems except the 2001)
173   <item>plus4
174   <item>sim6502
175   <item>sim65c02
176   <item>supervision
177   <item>telestrat
178   <item>vic20
179   </itemize>
180
181   There are a few more targets defined but neither of them is actually
182   supported.
183
184
185   <tag><tt>-u sym[:addrsize], --force-import sym[:addrsize]</tt></tag>
186
187   Force an import of a symbol. While object files are always linked to the
188   output file, regardless if there are any references, object modules from
189   libraries get only linked in if an import can be satisfied by this module.
190   The <tt/--force-import/ option may be used to add a reference to a symbol and
191   as a result force linkage of the module that exports the identifier.
192
193   The name of the symbol may optionally be followed by a colon and an address-size
194   specifier. If no address size is specified, the default address size
195   for the target machine is used.
196
197   Please note that the symbol name needs to have the internal representation,
198   meaning you have to prepend an underscore for C identifiers.
199
200
201   <label id="option-v">
202   <tag><tt>-v, --verbose</tt></tag>
203
204   Using the -v option, you may enable more output that may help you to
205   locate problems. If an undefined symbol is encountered, -v causes the
206   linker to print a detailed list of the references (that is, source file
207   and line) for this symbol.
208
209
210   <tag><tt>-vm</tt></tag>
211
212   Must be used in conjunction with <tt><ref id="option-m" name="-m"></tt>
213   (generate map file). Normally the map file will not include empty segments
214   and sections, or unreferenced symbols. Using this option, you can force the
215   linker to include all that information into the map file.  Also, it will
216   include a second <tt/Exports/ list.  The first list is sorted by name;
217   the second one is sorted by value.
218
219
220   <label id="option-C">
221   <tag><tt>-C</tt></tag>
222
223   This gives the name of an output config file to use. See section 4 for more
224   information about config files. -C may not be used together with <tt><ref
225   id="option-t" name="-t"></tt>.
226
227
228   <label id="option-D">
229   <tag><tt>-D sym=value, --define sym=value</tt></tag>
230
231   This option allows to define an external symbol on the command line. Value
232   may start with a '&dollar;' sign or with <tt/0x/ for hexadecimal values,
233   otherwise a leading zero denotes octal values. See also <ref
234   id="SYMBOLS" name="the SYMBOLS section"> in the configuration file.
235
236
237   <label id="option--lib-path">
238   <tag><tt>-L path, --lib-path path</tt></tag>
239
240   Specify a library search path. This option may be used more than once. It
241   adds a directory to the search path for library files. Libraries specified
242   without a path are searched in the current directory, in the list of
243   directories specified using <tt/--lib-path/, in directories given by
244   environment variables, and in a built-in default directory.
245
246
247   <tag><tt>-Ln</tt></tag>
248
249   This option allows you to create a file that contains all global labels and
250   may be loaded into the VICE emulator using the <tt/ll/ (load label) command
251   or into the Oricutron emulator using the <tt/sl/ (symbols load) command. You
252   may use this to debug your code with VICE. Note: Older versions had some
253   bugs in the label code. If you have problems, please get the latest <url
254   url="http://vice-emu.sourceforge.net" name="VICE"> version.
255
256
257   <label id="option-S">
258   <tag><tt>-S addr, --start-addr addr</tt></tag>
259
260   Using -S you may define the default starting address. If and how this
261   address is used depends on the config file in use. For the default
262   configurations, only the "none", "apple2" and "apple2enh" systems honor an
263   explicit start address, all other default configs provide their own.
264
265
266   <tag><tt>-V, --version</tt></tag>
267
268   This option prints the version number of the linker. If you send any
269   suggestions or bugfixes, please include this number.
270
271
272   <label id="option--cfg-path">
273   <tag><tt>--cfg-path path</tt></tag>
274
275   Specify a config file search path. This option may be used more than once.
276   It adds a directory to the search path for config files. A config file given
277   with the <tt><ref id="option-C" name="-C"></tt> option that has no path in
278   its name is searched in the current directory, in the list of directories
279   specified using <tt/--cfg-path/, in directories given by environment variables,
280   and in a built-in default directory.
281
282
283   <label id="option--dbgfile">
284   <tag><tt>--dbgfile name</tt></tag>
285
286   Specify an output file for debug information. Available information will be
287   written to this file. Using the <tt/-g/ option for the compiler and assembler
288   will increase the amount of information available. Please note that debug
289   information generation is currently being developed, so the format of the
290   file and its contents are subject to change without further notice.
291
292
293   <tag><tt>--lib file</tt></tag>
294
295   Links a library to the output. Use this command-line option instead of just
296   naming the library file, if the linker is not able to determine the file
297   type because of an unusual extension.
298
299
300   <tag><tt>--obj file</tt></tag>
301
302   Links an object file to the output. Use this command-line option instead
303   of just naming the object file, if the linker is not able to determine the
304   file type because of an unusual extension.
305
306
307   <label id="option--obj-path">
308   <tag><tt>--obj-path path</tt></tag>
309
310   Specify an object file search path. This option may be used more than once.
311   It adds a directory to the search path for object files. An object file
312   passed to the linker that has no path in its name is searched in the current
313   directory, in the list of directories specified using <tt/--obj-path/, in
314   directories given by environment variables, and in a built-in default directory.
315
316 </descrip>
317
318
319
320 <sect>Search paths<p>
321
322 Starting with version 2.10, there are now several search-path lists for files needed
323 by the linker: one for libraries, one for object files, and one for config
324 files.
325
326
327 <sect1>Library search path<p>
328
329 The library search-path list contains in this order:
330
331 <enum>
332 <item>The current directory.
333 <item>Any directory added with the <tt><ref id="option--lib-path"
334       name="--lib-path"></tt> option on the command line.
335 <item>The value of the environment variable <tt/LD65_LIB/ if it is defined.
336 <item>A subdirectory named <tt/lib/ of the directory defined in the environment
337       variable <tt/CC65_HOME/, if it is defined.
338 <item>An optionally compiled-in library path.
339 </enum>
340
341
342 <sect1>Object file search path<p>
343
344 The object file search-path list contains in this order:
345
346 <enum>
347 <item>The current directory.
348 <item>Any directory added with the <tt><ref id="option--obj-path"
349       name="--obj-path"></tt> option on the command line.
350 <item>The value of the environment variable <tt/LD65_OBJ/ if it is defined.
351 <item>A subdirectory named <tt/obj/ of the directory defined in the environment
352       variable <tt/CC65_HOME/, if it is defined.
353 <item>An optionally compiled-in directory.
354 </enum>
355
356
357 <sect1>Config file search path<p>
358
359 The config file search-path list contains in this order:
360
361 <enum>
362 <item>The current directory.
363 <item>Any directory added with the <tt><ref id="option--cfg-path"
364       name="--cfg-path"></tt> option on the command line.
365 <item>The value of the environment variable <tt/LD65_CFG/ if it is defined.
366 <item>A subdirectory named <tt/cfg/ of the directory defined in the environment
367       variable <tt/CC65_HOME/, if it is defined.
368 <item>An optionally compiled-in directory.
369 </enum>
370
371
372
373 <sect>Detailed workings<p>
374
375 The linker does several things when combining object modules:
376
377 First, the command line is parsed from left to right. For each object file
378 encountered (object files are recognized by a magic word in the header, so
379 the linker does not care about the name), imported and exported
380 identifiers are read from the file and inserted in a table. If a library
381 name is given (libraries are also recognized by a magic word, there are no
382 special naming conventions), all modules in the library are checked if an
383 export from this module would satisfy an import from other modules. All
384 modules where this is the case are marked. If duplicate identifiers are
385 found, the linker issues warnings.
386
387 That procedure (parsing and reading from left to right) does mean that a
388 library may only satisfy references for object modules (given directly or from
389 a library) named <em/before/ that library. With the command line
390
391 <tscreen><verb>
392         ld65 crt0.o clib.lib test.o
393 </verb></tscreen>
394
395 the module <tt/test.o/ must not contain references to modules in the library
396 <tt/clib.lib/.  But, if it does, you have to change the order of the modules
397 on the command line:
398
399 <tscreen><verb>
400         ld65 crt0.o test.o clib.lib
401 </verb></tscreen>
402
403 Step two is, to read the configuration file, and assign start addresses
404 for the segments and define any linker symbols (see <ref id="config-files"
405 name="Configuration files">).
406
407 After that, the linker is ready to produce an output file. Before doing that,
408 it checks its data for consistency. That is, it checks for unresolved
409 externals (if the output format is not relocatable) and for symbol type
410 mismatches (for example a zero-page symbol is imported by a module as an absolute
411 symbol).
412
413 Step four is, to write the actual target files. In this step, the linker will
414 resolve any expressions contained in the segment data. Circular references are
415 also detected in this step (a symbol may have a circular reference that goes
416 unnoticed if the symbol is not used).
417
418 Step five is to output a map file with a detailed list of all modules,
419 segments and symbols encountered.
420
421 And, last step, if you give the <tt><ref id="option-v" name="-v"></tt> switch
422 twice, you get a dump of the segment data. However, this may be quite
423 unreadable if you're not a developer. :-)
424
425
426
427 <sect>Configuration files<label id="config-files"><p>
428
429 Configuration files are used to describe the layout of the output file(s). Two
430 major topics are covered in a config file: The memory layout of the target
431 architecture, and the assignment of segments to memory areas. In addition,
432 several other attributes may be specified.
433
434 Case is ignored for keywords, that is, section or attribute names, but it is
435 <em/not/ ignored for names and strings.
436
437
438
439 <sect1>Memory areas<p>
440
441 Memory areas are specified in a <tt/MEMORY/ section. Let's have a look at an
442 example (this one describes the usable memory layout of the C64):
443
444 <tscreen><verb>
445         MEMORY {
446             RAM1:  start = $0800, size = $9800;
447             ROM1:  start = $A000, size = $2000;
448             RAM2:  start = $C000, size = $1000;
449             ROM2:  start = $E000, size = $2000;
450         }
451 </verb></tscreen>
452
453 As you can see, there are two RAM areas and two ROM areas. The names
454 (before the colon) are arbitrary names that must start with a letter, with
455 the remaining characters being letters or digits. The names of the memory
456 areas are used when assigning segments. As mentioned above, case is
457 significant for those names.
458
459 The syntax above is used in all sections of the config file. The name
460 (<tt/ROM1/ etc.) is said to be an identifier, the remaining tokens up to the
461 semicolon specify attributes for this identifier. You may use the equal sign
462 to assign values to attributes, and you may use a comma to separate
463 attributes, you may also leave both out. But you <em/must/ use a semicolon to
464 mark the end of the attributes for one identifier. The section above may also
465 have looked like this:
466
467 <tscreen><verb>
468         # Start of memory section
469         MEMORY
470         {
471             RAM1:
472                 start $0800
473                 size $9800;
474             ROM1:
475                 start $A000
476                 size $2000;
477             RAM2:
478                 start $C000
479                 size $1000;
480             ROM2:
481                 start $E000
482                 size $2000;
483         }
484 </verb></tscreen>
485
486 There are of course more attributes for a memory section than just start and
487 size. Start and size are mandatory attributes, that means, each memory area
488 defined <em/must/ have these attributes given (the linker will check that). I
489 will cover other attributes later. As you may have noticed, I've used a
490 comment in the example above. Comments start with a hash mark ('#'), the
491 remainder of the line is ignored if this character is found.
492
493
494 <sect1>Segments<p>
495
496 Let's assume you have written a program for your trusty old C64, and you would
497 like to run it. For testing purposes, it should run in the <tt/RAM/ area. So
498 we will start to assign segments to memory sections in the <tt/SEGMENTS/
499 section:
500
501 <tscreen><verb>
502         SEGMENTS {
503             CODE:   load = RAM1, type = ro;
504             RODATA: load = RAM1, type = ro;
505             DATA:   load = RAM1, type = rw;
506             BSS:    load = RAM1, type = bss, define = yes;
507         }
508 </verb></tscreen>
509
510 What we are doing here is telling the linker, that all segments go into the
511 <tt/RAM1/ memory area in the order specified in the <tt/SEGMENTS/ section. So
512 the linker will first write the <tt/CODE/ segment, then the <tt/RODATA/
513 segment, then the <tt/DATA/ segment - but it will not write the <tt/BSS/
514 segment. Why? Here enters the segment type: For each segment specified, you may also
515 specify a segment attribute. There are five possible segment attributes:
516
517 <tscreen><verb>
518         ro          means readonly
519         rw          means read/write
520         bss         means that this is an uninitialized segment
521         zp          a zeropage segment
522         overwrite   a segment that overwrites (parts of) another one
523
524 </verb></tscreen>
525
526 So, because we specified that the segment with the name BSS is of type bss,
527 the linker knows that this is uninitialized data, and will not write it to an
528 output file. This is an important point: For the assembler, the <tt/BSS/
529 segment has no special meaning. You specify, which segments have the bss
530 attribute when linking. This approach is much more flexible than having one
531 fixed bss segment, and is a result of the design decision to supporting an
532 arbitrary segment count.
533
534 If you specify "<tt/type = bss/" for a segment, the linker will make sure that
535 this segment does only contain uninitialized data (that is, zeroes), and issue
536 a warning if this is not the case.
537
538 For a <tt/bss/ type segment to be useful, it must be cleared somehow by your
539 program (this happens usually in the startup code - for example the startup
540 code for cc65-generated programs takes care about that). But how does your
541 code know, where the segment starts, and how big it is? The linker is able to
542 give that information, but you must request it. This is, what we're doing with
543 the "<tt/define = yes/" attribute in the <tt/BSS/ definitions. For each
544 segment, where this attribute is true, the linker will export three symbols.
545
546 <tscreen><verb>
547         __NAME_LOAD__   This is set to the address where the
548                         segment is loaded.
549         __NAME_RUN__    This is set to the run address of the
550                         segment. We will cover run addresses
551                         later.
552         __NAME_SIZE__   This is set to the segment size.
553 </verb></tscreen>
554
555 Replace <tt/NAME/ by the name of the segment, in the example above, this would
556 be <tt/BSS/. These symbols may be accessed by your code.
557
558 Now, as we've configured the linker to write the first three segments and
559 create symbols for the last one, there's only one question left: Where does
560 the linker put the data? It would be very convenient to have the data in a
561 file, wouldn't it?
562
563 <sect1>Output files<p>
564
565 We don't have any files specified above, and indeed, this is not needed in a
566 simple configuration like the one above. There is an additional attribute
567 "file" that may be specified for a memory area, that gives a file name to
568 write the area data into. If there is no file name given, the linker will
569 assign the default file name. This is "a.out" or the one given with the
570 <tt><ref id="option-o" name="-o"></tt> option on the command line. Since the
571 default behaviour is OK for our purposes, I did not use the attribute in the
572 example above. Let's have a look at it now.
573
574 The "file" attribute (the keyword may also be written as "FILE" if you like
575 that better) takes a string enclosed in double quotes ('&dquot;') that specifies the
576 file, where the data is written. You may specify the same file several times,
577 in that case the data for all memory areas having this file name is written
578 into this file, in the order of the memory areas defined in the <tt/MEMORY/
579 section. Let's specify some file names in the <tt/MEMORY/ section used above:
580
581 <tscreen><verb>
582         MEMORY {
583             RAM1:  start = $0800, size = $9800, file = %O;
584             ROM1:  start = $A000, size = $2000, file = "rom1.bin";
585             RAM2:  start = $C000, size = $1000, file = %O;
586             ROM2:  start = $E000, size = $2000, file = "rom2.bin";
587         }
588 </verb></tscreen>
589
590 The <tt/%O/ used here is a way to specify the default behaviour explicitly:
591 <tt/%O/ is replaced by a string (including the quotes) that contains the
592 default output name, that is, "a.out" or the name specified with the <tt><ref
593 id="option-o" name="-o"></tt> option on the command line. Into this file, the
594 linker will first write any segments that go into <tt/RAM1/, and will append
595 then the segments for <tt/RAM2/, because the memory areas are given in this
596 order. So, for the RAM areas, nothing has really changed.
597
598 We've not used the ROM areas, but we will do that below, so we give the file
599 names here. Segments that go into <tt/ROM1/ will be written to a file named
600 "rom1.bin", and segments that go into <tt/ROM2/ will be written to a file
601 named "rom2.bin". The name given on the command line is ignored in both cases.
602
603 Assigning an empty file name for a memory area will discard the data written
604 to it. This is useful, if the memory area has segments assigned that are empty
605 (for example because they are of type bss). In that case, the linker will
606 create an empty output file. This may be suppressed by assigning an empty file
607 name to that memory area.
608
609 The <tt/%O/ sequence is also allowed inside a string. So using
610
611 <tscreen><verb>
612         MEMORY {
613             ROM1:  start = $A000, size = $2000, file = "%O-1.bin";
614             ROM2:  start = $E000, size = $2000, file = "%O-2.bin";
615         }
616 </verb></tscreen>
617
618 would write two files that start with the name of the output file specified on
619 the command line, with "-1.bin" and "-2.bin" appended respectively. Because
620 '%' is used as an escape char, the sequence "%%" has to be used if a single
621 percent sign is required.
622
623 <sect1>OVERWRITE segments<p>
624
625 There are situations when you may wish to overwrite some part (or parts) of a
626 segment with another one. Perhaps you are modifying an OS ROM that has its
627 public subroutines at fixed, well-known addresses, and you want to prevent them
628 from shifting to other locations in memory if your changed code takes less
629 space. Or you are updating a block of code available in binary-only form with
630 fixes that are scattered in various places. Generally, whenever you want to
631 minimize disturbance to an existing code brought on by your updates, OVERWRITE
632 segments are worth considering.
633
634 Here is an example:
635
636 <tscreen><verb>
637 MEMORY {
638     RAM: file = "", start = $6000, size = $2000, type=rw;
639     ROM: file = %O, start = $8000, size = $8000, type=ro;
640 }
641 </verb></tscreen>
642
643 Nothing unusual so far, just two memory blocks - one RAM, one ROM. Now let's
644 look at the segment configuration:
645
646 <tscreen><verb>
647 SEGMENTS {
648     RAM:       load = RAM, type = bss;
649     ORIGINAL:  load = ROM, type = ro;
650     FASTCOPY:  load = ROM, start=$9000, type = overwrite;
651     JMPPATCH1: load = ROM, start=$f7e8, type = overwrite;
652     DEBUG:     load = ROM, start=$8000, type = overwrite;
653     VERSION:   load = ROM, start=$e5b7, type = overwrite;
654 }
655 </verb></tscreen>
656
657 Segment named ORIGINAL contains the original code, disassembled or provided in
658 a binary form (i.e. using <tt/.INCBIN/ directive; see the <tt/ca65/ assembler
659 document).  Subsequent four segments will be relocated to addresses specified
660 by their "start" attributes ("offset" can also be used) and then will overwrite
661 whatever was at these locations in the ORIGINAL segment. In the end, resulting
662 binary output file will thus contain original data with the exception of four
663 sequences starting at $9000, $f7e8, $8000 and $e5b7, which will sport code from
664 their respective segments. How long these sequences will be depends on the
665 lengths of corresponding segments - they can even overlap, so think what you're
666 doing.
667
668 Finally, note that OVERWRITE segments should be the final segments loaded to a
669 particular memory area, and that they need at least one of "start" or "offset"
670 attributes specified.
671
672 <sect1>LOAD and RUN addresses (ROMable code)<p>
673
674 Let us look now at a more complex example. Say, you've successfully tested
675 your new "Super Operating System" (SOS for short) for the C64, and you
676 will now go and replace the ROMs by your own code. When doing that, you
677 face a new problem: If the code runs in RAM, we need not to care about
678 read/write data. But now, if the code is in ROM, we must care about it.
679 Remember the default segments (you may of course specify your own):
680
681 <tscreen><verb>
682         CODE            read-only code
683         RODATA          read-only data
684         DATA            read/write data
685         BSS             uninitialized data, read/write
686 </verb></tscreen>
687
688 Since <tt/BSS/ is not initialized, we must not care about it now, but what
689 about <tt/DATA/? <tt/DATA/ contains initialized data, that is, data that was
690 explicitly assigned a value. And your program will rely on these values on
691 startup. Since there's no way to remember the contents of the data segment,
692 other than storing it into one of the ROMs, we have to put it there. But
693 unfortunately, ROM is not writable, so we have to copy it into RAM before
694 running the actual code.
695
696 The linker won't copy the data from ROM into RAM for you (this must be done by
697 the startup code of your program), but it has some features that will help you
698 in this process.
699
700 First, you may not only specify a "<tt/load/" attribute for a segment, but
701 also a "<tt/run/" attribute. The "<tt/load/" attribute is mandatory, and, if
702 you don't specify a "<tt/run/" attribute, the linker assumes that load area
703 and run area are the same. We will use this feature for our data area:
704
705 <tscreen><verb>
706         SEGMENTS {
707             CODE:   load = ROM1, type = ro;
708             RODATA: load = ROM2, type = ro;
709             DATA:   load = ROM2, run = RAM2, type = rw, define = yes;
710             BSS:    load = RAM2, type = bss, define = yes;
711         }
712 </verb></tscreen>
713
714 Let's have a closer look at this <tt/SEGMENTS/ section. We specify that the
715 <tt/CODE/ segment goes into <tt/ROM1/ (the one at $A000). The readonly data
716 goes into <tt/ROM2/. Read/write data will be loaded into <tt/ROM2/ but is run
717 in <tt/RAM2/. That means that all references to labels in the <tt/DATA/
718 segment are relocated to be in <tt/RAM2/, but the segment is written to
719 <tt/ROM2/. All your startup code has to do is, to copy the data from its
720 location in <tt/ROM2/ to the final location in <tt/RAM2/.
721
722 So, how do you know, where the data is located? This is the second point,
723 where you get help from the linker. Remember the "<tt/define/" attribute?
724 Since we have set this attribute to true, the linker will define three
725 external symbols for the data segment that may be accessed from your code:
726
727 <tscreen><verb>
728         __DATA_LOAD__   This is set to the address where the segment
729                         is loaded, in this case, it is an address in
730                         ROM2.
731         __DATA_RUN__    This is set to the run address of the segment,
732                         in this case, it is an address in RAM2.
733         __DATA_SIZE__   This is set to the segment size.
734 </verb></tscreen>
735
736 So, what your startup code must do, is to copy <tt/__DATA_SIZE__/ bytes from
737 <tt/__DATA_LOAD__/ to <tt/__DATA_RUN__/ before any other routines are called.
738 All references to labels in the <tt/DATA/ segment are relocated to <tt/RAM2/
739 by the linker, so things will work properly.
740
741 There's a library subroutine called <tt/copydata/ (in a module named
742 <tt/copydata.s/) that might be used to do actual copying. Be sure to have a
743 look at it's inner workings before using it!
744
745
746 <sect1>Other MEMORY area attributes<p>
747
748 There are some other attributes not covered above. Before starting the
749 reference section, I will discuss the remaining things here.
750
751 You may request symbols definitions also for memory areas. This may be
752 useful for things like a software stack, or an I/O area.
753
754 <tscreen><verb>
755         MEMORY {
756             STACK:  start = $C000, size = $1000, define = yes;
757         }
758 </verb></tscreen>
759
760 This will define some external symbols that may be used in your code:
761
762 <tscreen><verb>
763         __STACK_START__         This is set to the start of the memory
764                                 area, $C000 in this example.
765         __STACK_SIZE__          The size of the area, here $1000.
766         __STACK_LAST__          This is NOT the same as START+SIZE.
767                                 Instead, it is defined as the first
768                                 address that is not used by data. If we
769                                 don't define any segments for this area,
770                                 the value will be the same as START.
771         __STACK_FILEOFFS__      The binary offset in the output file. This
772                                 is not defined for relocatable output file
773                                 formats (o65).
774 </verb></tscreen>
775
776 A memory section may also have a type. Valid types are
777
778 <tscreen><verb>
779         ro      for readonly memory
780         rw      for read/write memory.
781 </verb></tscreen>
782
783 The linker will assure, that no segment marked as read/write or bss is put
784 into a memory area that is marked as readonly.
785
786 Unused memory in a memory area may be filled. Use the "<tt/fill = yes/"
787 attribute to request this. The default value to fill unused space is zero. If
788 you don't like this, you may specify a byte value that is used to fill these
789 areas with the "<tt/fillval/" attribute. If there is no "<tt/fillval/"
790 attribute for the segment, the "<tt/fillval/" attribute of the memory area (or
791 its default) is used instead. This means that the value may also be used to
792 fill unfilled areas generated by the assembler's <tt/.ALIGN/ and <tt/.RES/
793 directives.
794
795 The symbol <tt/%S/ may be used to access the default start address (that is,
796 the one defined in <ref id="FEATURES" name="the FEATURES section">, or the
797 value given on the command line with the <tt><ref id="option-S" name="-S"></tt>
798 option).
799
800 To support systems with banked memory, a special attribute named <tt/bank/ is
801 available. The attribute value is an arbitrary 32-bit integer. The assembler
802 has a builtin function named <tt/.BANK/ which may be used with an argument
803 that has a segment reference (for example a symbol). The result of this
804 function is the value of the bank attribute for the run memory area of the
805 segment.
806
807
808 <sect1>Other SEGMENT attributes<p>
809
810 Segments may be aligned to some memory boundary. Specify "<tt/align = num/" to
811 request this feature. To align all segments on a page boundary, use
812
813 <tscreen><verb>
814         SEGMENTS {
815             CODE:   load = ROM1, type = ro, align = $100;
816             RODATA: load = ROM2, type = ro, align = $100;
817             DATA:   load = ROM2, run = RAM2, type = rw, define = yes,
818                     align = $100;
819             BSS:    load = RAM2, type = bss, define = yes, align = $100;
820         }
821 </verb></tscreen>
822
823 If an alignment is requested, the linker will add enough space to the output
824 file, so that the new segment starts at an address that is dividable by the
825 given number without a remainder. All addresses are adjusted accordingly. To
826 fill the unused space, bytes of zero are used, or, if the memory area has a
827 "<tt/fillval/" attribute, that value. Alignment is always needed, if you have
828 used the <tt/.ALIGN/ command in the assembler. The alignment of a segment
829 must be equal or greater than the alignment used in the <tt/.ALIGN/ command.
830 The linker will check that, and issue a warning, if the alignment of a segment
831 is lower than the alignment requested in an <tt/.ALIGN/ command of one of the
832 modules making up this segment.
833
834 For a given segment you may also specify a fixed offset into a memory area or
835 a fixed start address. Use this if you want the code to run at a specific
836 address (a prominent case is the interrupt vector table which must go at
837 address $FFFA). Only one of <tt/ALIGN/ or <tt/OFFSET/ or <tt/START/ may be
838 specified. If the directive creates empty space, it will be filled with zero,
839 of with the value specified with the "<tt/fillval/" attribute if one is given.
840 The linker will warn you if it is not possible to put the code at the
841 specified offset (this may happen if other segments in this area are too
842 large). Here's an example:
843
844 <tscreen><verb>
845         SEGMENTS {
846             VECTORS: load = ROM2, type = ro, start = $FFFA;
847         }
848 </verb></tscreen>
849
850 or (for the segment definitions from above)
851
852 <tscreen><verb>
853         SEGMENTS {
854             VECTORS: load = ROM2, type = ro, offset = $1FFA;
855         }
856 </verb></tscreen>
857
858 The "<tt/align/", "<tt/start/" and "<tt/offset/" attributes change placement
859 of the segment in the run memory area, because this is what is usually
860 desired. If load and run memory areas are equal (which is the case if only the
861 load memory area has been specified), the attributes will also work. There is
862 also an "<tt/align_load/" attribute that may be used to align the start of the
863 segment in the load memory area, in case different load and run areas have
864 been specified. There are no special attributes to set start or offset for
865 just the load memory area.
866
867 A "<tt/fillval/" attribute may not only be specified for a memory area, but
868 also for a segment. The value must be an integer between 0 and 255. It is used
869 as the fill value for space reserved by the assembler's <tt/.ALIGN/ and <tt/.RES/
870 commands. It is also used as the fill value for space between sections (part of a
871 segment that comes from one object file) caused by alignment, but not for
872 space that preceeds the first section.
873
874 To suppress the warning, the linker issues if it encounters a segment that is
875 not found in any of the input files, use "<tt/optional=yes/" as an additional
876 segment attribute. Be careful when using this attribute, because a missing
877 segment may be a sign of a problem, and if you're suppressing the warning,
878 there is no one left to tell you about it.
879
880 <sect1>The FILES section<p>
881
882 The <tt/FILES/ section is used to support other formats than straight binary
883 (which is the default, so binary output files do not need an explicit entry
884 in the <tt/FILES/ section).
885
886 The <tt/FILES/ section lists output files and as only attribute the format of
887 each output file. Assigning binary format to the default output file would
888 look like this:
889
890 <tscreen><verb>
891         FILES {
892             %O: format = bin;
893         }
894 </verb></tscreen>
895
896 There are two other available formats, one is the o65 format specified by Andre
897 Fachat (see the <url url="http://www.6502.org/users/andre/o65/fileformat.html"
898 name="6502 binary relocation format specification">). It is defined like this:
899
900 <tscreen><verb>
901         FILES {
902             %O: format = o65;
903         }
904 </verb></tscreen>
905
906 The other format available is the Atari (xex) segmented file format, this is
907 the standard format used by Atari DOS 2.0 and upward file managers in the Atari
908 8-bit computers, and it is defined like this:
909
910 <tscreen><verb>
911         FILES {
912             %O: format = atari;
913         }
914 </verb></tscreen>
915
916 In the Atari segmented file format, the linker will write each <tt/MEMORY/ area
917 as a new segment, including a header with the start and end address.
918
919 The necessary o65 or Atari attributes are defined in a special section labeled
920 <ref id="FORMAT" name="FORMAT">.
921
922
923
924 <sect1>The FORMAT section<label id="FORMAT"><p>
925
926 The <tt/FORMAT/ section is used to describe file formats. The default (binary)
927 format has currently no attributes, so, while it may be listed in this
928 section, the attribute list is empty. The second supported format,
929 <url url="http://www.6502.org/users/andre/o65/fileformat.html" name="o65">,
930 has several attributes that may be defined here.
931
932 <tscreen><verb>
933     FORMATS {
934         o65: os = lunix, version = 0, type = small,
935              import = LUNIXKERNEL,
936              export = _main;
937     }
938 </verb></tscreen>
939
940 The Atari file format has two attributes:
941
942 <descrip>
943
944   <tag><tt>RUNAD = symbol</tt></tag>
945
946   Specify a symbol as the run address of the binary, the loader will call this
947   address after all the file is loaded in memory. If the attribute is omitted,
948   no run address is included in the file.
949
950   <tag><tt>INITAD = memory_area : symbol</tt></tag>
951
952   Specify a symbol as the initialization address for the given memory area.
953   The binary loader will call this address just after the memory area is loaded
954   into memory, before continuing loading the rest of the file.
955
956 </descrip>
957
958
959 <tscreen><verb>
960     FORMATS {
961         atari: runad = _start;
962     }
963 </verb></tscreen>
964
965
966 <sect1>The FEATURES section<label id="FEATURES"><p>
967
968 In addition to the <tt/MEMORY/ and <tt/SEGMENTS/ sections described above, the
969 linker has features that may be enabled by an additional section labeled
970 <tt/FEATURES/.
971
972
973 <sect2>The CONDES feature<p>
974
975 <tt/CONDES/ is used to tell the linker to emit module constructor/destructor
976 tables.
977
978 <tscreen><verb>
979         FEATURES {
980             CONDES: segment = RODATA,
981                     type = constructor,
982                     label = __CONSTRUCTOR_TABLE__,
983                     count = __CONSTRUCTOR_COUNT__;
984         }
985 </verb></tscreen>
986
987 The <tt/CONDES/ feature has several attributes:
988
989 <descrip>
990
991   <tag><tt>segment</tt></tag>
992
993   This attribute tells the linker into which segment the table should be
994   placed. If the segment does not exist, it is created.
995
996
997   <tag><tt>type</tt></tag>
998
999   Describes the type of the routines to place in the table. Type may be one of
1000   the predefined types <tt/constructor/, <tt/destructor/, <tt/interruptor/, or
1001   a numeric value between 0 and 6.
1002
1003
1004   <tag><tt>label</tt></tag>
1005
1006   This specifies the label to use for the table. The label points to the start
1007   of the table in memory and may be used from within user-written code.
1008
1009
1010   <tag><tt>count</tt></tag>
1011
1012   This is an optional attribute. If specified, an additional symbol is defined
1013   by the linker using the given name. The value of this symbol is the number
1014   of entries (<em/not/ bytes) in the table. While this attribute is optional,
1015   it is often useful to define it.
1016
1017
1018   <tag><tt>order</tt></tag>
1019
1020   An optional attribute that takes one of the keywords <tt/increasing/ or
1021   <tt/decreasing/ as an argument. Specifies the sorting order of the entries
1022   within the table. The default is <tt/increasing/, which means that the
1023   entries are sorted with increasing priority (the first entry has the lowest
1024   priority). "Priority" is the priority specified when declaring a symbol as
1025   <tt/.CONDES/ with the assembler, higher values mean higher priority. You may
1026   change this behaviour by specifying <tt/decreasing/ as the argument, the
1027   order of entries is reversed in this case.
1028
1029   Please note that the order of entries with equal priority is undefined.
1030
1031   <tag><tt>import</tt></tag>
1032
1033   This attribute defines a valid symbol name, that is added as an import
1034   to the modules defining a constructor/destructor of the given type.
1035   This can be used to force linkage of a module if this module exports the
1036   requested symbol.
1037
1038 </descrip>
1039
1040 Without specifying the <tt/CONDES/ feature, the linker will not create any
1041 tables, even if there are <tt/condes/ entries in the object files.
1042
1043 For more information see the <tt/.CONDES/ command in the <url
1044 url="ca65.html" name="ca65 manual">.
1045
1046
1047 <sect2>The STARTADDRESS feature<p>
1048
1049 <tt/STARTADDRESS/ is used to set the default value for the start address,
1050 which can be referenced by the <tt/%S/ symbol. The builtin default for the
1051 linker is &dollar;200.
1052
1053 <tscreen><verb>
1054         FEATURES {
1055             # Default start address is $1000
1056             STARTADDRESS:       default = $1000;
1057         }
1058 </verb></tscreen>
1059
1060 Please note that order is important: The default start address must be defined
1061 <em/before/ the <tt/%S/ symbol is used in the config file. This does usually
1062 mean, that the <tt/FEATURES/ section has to go to the top of the config file.
1063
1064
1065
1066 <sect1>The SYMBOLS section<label id="SYMBOLS"><p>
1067
1068 The configuration file may also be used to define symbols used in the link
1069 stage or to force symbols imports. This is done in the SYMBOLS section. The
1070 symbol name is followed by a colon and symbol attributes.
1071
1072 The following symbol attributes are supported:
1073
1074 <descrip>
1075
1076   <tag><tt>addrsize</tt></tag>
1077
1078   The <tt/addrsize/ attribute specifies the address size of the symbol and
1079   may be one of
1080 <itemize>
1081     <item><tt/zp/, <tt/zeropage/ or <tt/direct/
1082     <item><tt/abs/, <tt/absolute/ or <tt/near/
1083     <item><tt/far/
1084     <item><tt/long/ or <tt/dword/.
1085 </itemize>
1086
1087 Without this attribute, the default address size is <tt/abs/.
1088
1089   <tag><tt>type</tt></tag>
1090
1091   This attribute is mandatory. Its value is one of <tt/export/, <tt/import/ or
1092   <tt/weak/. <tt/export/ means that the symbol is defined and exported from
1093   the linker config. <tt/import/ means that an import is generated for this
1094   symbol, eventually forcing a module that exports this symbol to be included
1095   in the output. <tt/weak/ is similar as <tt/export/. However, the symbol is
1096   only defined if it is not defined elsewhere.
1097
1098   <tag><tt>value</tt></tag>
1099
1100   This must only be given for symbols of type <tt/export/ or <tt/weak/. It
1101   defines the value of the symbol and may be an expression.
1102
1103 </descrip>
1104
1105 The following example defines the stack size for an application, but allows
1106 the programmer to override the value by specifying <tt/--define
1107 __STACKSIZE__=xxx/ on the command line.
1108
1109 <tscreen><verb>
1110         SYMBOLS {
1111             # Define the stack size for the application
1112             __STACKSIZE__:  type = weak, value = $800;
1113         }
1114 </verb></tscreen>
1115
1116
1117
1118 <sect>Special segments<p>
1119
1120 The builtin config files do contain segments that have a special meaning for
1121 the compiler and the libraries that come with it. If you replace the builtin
1122 config files, you will need the following information.
1123
1124 <sect1>ONCE<p>
1125
1126 The ONCE segment is used for initialization code run only once before
1127 execution reaches main() - provided that the program runs in RAM. You
1128 may for example add the ONCE segment to the heap in really memory
1129 constrained systems.
1130
1131 <sect1>LOWCODE<p>
1132
1133 For the LOWCODE segment, it is guaranteed that it won't be banked out, so it
1134 is reachable at any time by interrupt handlers or similar.
1135
1136 <sect1>STARTUP<p>
1137
1138 This segment contains the startup code which initializes the C software stack
1139 and the libraries. It is placed in its own segment because it needs to be
1140 loaded at the lowest possible program address on several platforms.
1141
1142 <sect1>ZPSAVE<p>
1143
1144 The ZPSAVE segment contains the original values of the zeropage locations used
1145 by the ZEROPAGE segment. It is placed in its own segment because it must not be
1146 initialized.
1147
1148
1149
1150 <sect>Copyright<p>
1151
1152 ld65 (and all cc65 binutils) are (C) Copyright 1998-2005 Ullrich von
1153 Bassewitz. For usage of the binaries and/or sources the following
1154 conditions do apply:
1155
1156 This software is provided 'as-is', without any expressed or implied
1157 warranty.  In no event will the authors be held liable for any damages
1158 arising from the use of this software.
1159
1160 Permission is granted to anyone to use this software for any purpose,
1161 including commercial applications, and to alter it and redistribute it
1162 freely, subject to the following restrictions:
1163
1164 <enum>
1165 <item>  The origin of this software must not be misrepresented; you must not
1166         claim that you wrote the original software. If you use this software
1167         in a product, an acknowledgment in the product documentation would be
1168         appreciated but is not required.
1169 <item>  Altered source versions must be plainly marked as such, and must not
1170         be misrepresented as being the original software.
1171 <item>  This notice may not be removed or altered from any source
1172         distribution.
1173 </enum>
1174
1175
1176
1177 </article>