/****************************************************************************** * * Default Linker Command file for the Texas Instruments TM4C1294KCPDT * * This is derived from revision 15071 of the TivaWare Library. * *****************************************************************************/ --retain=*(.intvecs) MEMORY { FLASH_A(RX) : origin = 0x00000000, length = 0x00040000, fill=0xAAAAAAAA FLASH_B(R) : origin = 0x00040000, length = 0x00040000, fill=0xCCCCCCCC SRAM (RWX) : origin = 0x20000000, length = 0x00040000, fill=0xEEEEEEEE } /* The following command line options are set as part of the CCS project. */ /* If you are building using the command line, or for some reason want to */ /* define them here, you can uncomment and modify these lines as needed. */ /* If you are using CCS for building, it is probably better to make any such */ /* modifications in your CCS project and leave this file alone. */ /* */ /* --heap_size=0 */ /* --stack_size=256 */ /* --library=rtsv7M4_T_le_eabi.lib */ /* Section allocation in memory */ SECTIONS { .intvecs: > 0x00000000 .text : > FLASH_A .const : > FLASH_A .binit : > FLASH_A .cinit : > FLASH_A .pinit : > FLASH_A .init_array : > FLASH_A .TI.ramfunc : > FLASH_A, run=SRAM, table(BINIT) .vtable : > 0x20000000 .data : > SRAM .bss : > SRAM .sysmem : > SRAM .stack : > SRAM } __STACK_TOP = __stack + 512;