SPRU513Y August 2001 – June 2022 SM320F28335-EP
The syntax for the --map_file option is:
--map_file= filename
The linker map describes:
The map file contains the name of the output module and the entry point; it can also contain up to three tables:
R | specifies that the memory can be read. | ||
W | specifies that the memory can be written to. | ||
X | specifies that the memory can contain executable code. | ||
I | specifies that the memory can be initialized. |
For more information about the SECTIONS directive, see Section 9.6.5.
The following example links file1.c.obj and file2.c.obj and creates a map file called map.out:
cl2000 --run_linker file1.c.obj file2.c.obj --map_file=map.out
Output Map File, demo.map shows an example of a map file.