Tool/software: TI C/C++ Compiler
Hello,
According to the ARM assembly language tools manual, the linker has a keyword ALIAS that can be use to indicate the linker two memory ranges that are actually mapped to the same physical memory.
the example from the linker manual:
MEMORY
{
...
ALIAS
{
SRAM_CODE (RWX) : origin = 0x01000000
SRAM_DATA (RW) : origin = 0x20000000
} length = 0x0001000
...
}
I was trying to use this keyword according to the syntax the manual describes but the linker generate error message:
"V:/USRR_Projects/branches/guySBL/TDA3xx/SBL/SBL_Common/sbl_common.cmd", line 22: error #10024-D: expecting memory range specifier instead of "{"\
Can you please help explain what am i doing wrong - it looks like the linker does not recognize this syntax and/or keyword
Thanks
Guy