tm4c1231e6pz.cmd 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /******************************************************************************
  2. *
  3. * Default Linker Command file for the Texas Instruments TM4C1231E6PZ
  4. *
  5. * This is derived from revision 15071 of the TivaWare Library.
  6. *
  7. *****************************************************************************/
  8. --retain=g_pfnVectors
  9. MEMORY
  10. {
  11. FLASH (RX) : origin = 0x00000000, length = 0x00020000
  12. SRAM (RWX) : origin = 0x20000000, length = 0x00008000
  13. }
  14. /* The following command line options are set as part of the CCS project. */
  15. /* If you are building using the command line, or for some reason want to */
  16. /* define them here, you can uncomment and modify these lines as needed. */
  17. /* If you are using CCS for building, it is probably better to make any such */
  18. /* modifications in your CCS project and leave this file alone. */
  19. /* */
  20. /* --heap_size=0 */
  21. /* --stack_size=256 */
  22. /* --library=rtsv7M4_T_le_eabi.lib */
  23. /* Section allocation in memory */
  24. SECTIONS
  25. {
  26. .intvecs: > 0x00000000
  27. .text : > FLASH
  28. .const : > FLASH
  29. .cinit : > FLASH
  30. .pinit : > FLASH
  31. .init_array : > FLASH
  32. .vtable : > 0x20000000
  33. .data : > SRAM
  34. .bss : > SRAM
  35. .sysmem : > SRAM
  36. .stack : > SRAM
  37. }
  38. __STACK_TOP = __stack + 512;