The MEMORY Directive
7-28
When you use the MEMORY directive, be sure to identify
all the memory
ranges that are available for object code. Memory defined by the MEMORY
directive is
configured memory; any memory that you do not explicitly account
for with the MEMORY directive is
unconfigured memory. The linker does not
place any part of a program into unconfigured memory. You can represent non-
existent memory spaces by simply not including an address range in a
MEMORY directive statement.
The MEMORY directive is specified in a command file by the word MEMORY
(uppercase), followed by a list of memory range specifications enclosed in
braces. The MEMORY directive in Example 7–3 defines a system that has 4K
words of ROM at address C00h in program memory, 32 words of RAM at
address 60h in data memory, and 4K words at address 80h in data memory.
Example 7–3. The MEMORY Directive
/**************************************************/
/* Sample command file with MEMORY directive */
/**************************************************/
file1.obj file2.obj /* Input files */
–o prog.out /* Options */
MEMORY
{
PAGE 0:
ROM:
origin = C00h,
length = 1000h
PAGE 1:
SCRATCH:
origin = 60h,
length = 20h
ONCHIP:
origin = 80h,
length = 1000h
}
origins
lengths
MEMORY
directive
PAGE
options
names
Summary of Contents for TMS320C54x
Page 38: ......
Page 39: ......
Page 40: ......
Page 41: ......
Page 42: ......
Page 43: ......
Page 44: ......
Page 45: ......
Page 46: ......
Page 47: ......
Page 48: ......
Page 49: ......
Page 50: ......
Page 51: ......
Page 52: ......
Page 53: ......
Page 54: ......
Page 55: ......
Page 56: ......
Page 57: ......
Page 58: ......
Page 59: ......
Page 60: ......
Page 61: ......
Page 62: ......
Page 276: ......
Page 277: ......
Page 278: ......
Page 279: ......
Page 280: ......
Page 281: ......
Page 282: ......
Page 283: ......
Page 284: ......
Page 285: ......
Page 286: ......
Page 287: ......
Page 288: ......
Page 289: ......
Page 290: ......
Page 291: ......
Page 292: ......
Page 293: ......
Page 294: ......
Page 295: ......
Page 296: ......
Page 297: ......
Page 298: ......
Page 299: ......
Page 300: ......
Page 301: ......
Page 302: ......