/****************************************************************************** * * Default Linker Command file for the Texas Instruments TM4C1290NCPDT * * This is derived from revision 15071 of the TivaWare Library. * *****************************************************************************/ --retain=g_pfnVectors MEMORY { FLASH (RX) : origin = 0x00000000, length = 0x000eff00, fill = 0xFFFFFFFF SOFT (RX) : origin = 0x000eff00, length = 0x000000f8, fill = 0xFFFFFFFF CRC (R) : origin = 0x000efff8, length = 0x00000008, fill = 0xFFFFFFFF TEXT (R) : origin = 0x000fc000, length = 0x00002000 SRAM (RWX) : origin = 0x20000000, length = 0x0003ef00 TRAM (RWX) : origin = 0x2003ef00, length = 0x00001000 CRAM (RWX) : origin = 0x2003ff00, length = 0x00000100 } //} /* 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 .const : > FLASH palign 4 .cinit : > FLASH .pinit : > FLASH .init_array : > FLASH .softstart: > SOFT .result : > CRC .partext: > TEXT .stack : > 0x20000000 .vtable : > SRAM .data : > SRAM .bss : > SRAM .sysmem : > SRAM .stack : > SRAM .sentram : > TRAM .memcheck : > CRAM } __STACK_TOP = __stack;