/* =========================================================================* * OMAPL137_DSP_cache.cmd - Linker Command File for OMAPL137 CACHE Example * * * * These linker options are for command line linking only. For IDE linking, * * you should set your linker options in Project Properties. * * -c Link Using C Conventions * * -stack 0x1000 Software Stack Size * * -heap 0x1000 Heap Area Size * * =========================================================================*/ -stack 0x1000 -heap 0x1000 /* =========================================================================* * Specify the System Memory Map * * =========================================================================*/ MEMORY { L2: o = 0x11800000 l = 0x00040000 L1P: o = 0x11E00000 l = 0x00008000 L1D: o = 0x11F00000 l = 0x00008000 L3: o = 0x80000000 l = 0x00020000 SDRAM: o = 0xC0000000 l = 0x001FFFFF } /* =========================================================================* * Specify the Sections Allocation into Memory * * =========================================================================*/ SECTIONS { .cinit > SDRAM /* Initialization Tables */ .pinit > SDRAM /* C++ Constructor Tables */ .const > SDRAM /* Constant Data */ .switch > SDRAM /* Jump Tables */ .text > SDRAM /* Executable Code */ .text: _c_int00: align=8192 > SDRAM .bss > SDRAM /* Global & Static Variables */ .far > SDRAM /* Far Global & Static Variables */ .stack > SDRAM /* Software System Stack */ .sysmem > SDRAM /* Dynamic Memory Allocation Area */ .cio > SDRAM /* C I/O Buffer */ .vecs > SDRAM /* Interrupt Vectors */ }