|
| 1 | +//***************************************************************************** |
| 2 | +//! @file cc13x2r1f3.cmd |
| 3 | +//! @brief CC13x2R1F3 rev2 linker file for Code Composer Studio. |
| 4 | +//! |
| 5 | +//! Revised $Date$ |
| 6 | +//! Revision $Revision$ |
| 7 | +// |
| 8 | +// This file is auto-generated. |
| 9 | +// |
| 10 | +// Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/ |
| 11 | +// |
| 12 | +// |
| 13 | +// Redistribution and use in source and binary forms, with or without |
| 14 | +// modification, are permitted provided that the following conditions |
| 15 | +// are met: |
| 16 | +// |
| 17 | +// Redistributions of source code must retain the above copyright |
| 18 | +// notice, this list of conditions and the following disclaimer. |
| 19 | +// |
| 20 | +// Redistributions in binary form must reproduce the above copyright |
| 21 | +// notice, this list of conditions and the following disclaimer in the |
| 22 | +// documentation and/or other materials provided with the distribution. |
| 23 | +// |
| 24 | +// Neither the name of Texas Instruments Incorporated nor the names of |
| 25 | +// its contributors may be used to endorse or promote products derived |
| 26 | +// from this software without specific prior written permission. |
| 27 | +// |
| 28 | +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 29 | +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 30 | +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 31 | +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 32 | +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 33 | +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 34 | +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 35 | +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 36 | +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 37 | +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 38 | +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 39 | +//****************************************************************************/ |
| 40 | + |
| 41 | +/* Retain interrupt vector table variable */ |
| 42 | +--retain=g_pfnVectors |
| 43 | +/* Override default entry point. */ |
| 44 | +--entry_point ResetISR |
| 45 | +/* Allow main() to take args */ |
| 46 | +--args 0x8 |
| 47 | +/* Suppress warnings and errors: */ |
| 48 | +/* - 10063: Warning about entry point not being _c_int00 */ |
| 49 | +/* - 16011, 16012: 8-byte alignment errors. Observed when linking in object */ |
| 50 | +/* files compiled using Keil (ARM compiler) */ |
| 51 | +--diag_suppress=10063,16011,16012 |
| 52 | + |
| 53 | +/* The following command line options are set as part of the CCS project. */ |
| 54 | +/* If you are building using the command line, or for some reason want to */ |
| 55 | +/* define them here, you can uncomment and modify these lines as needed. */ |
| 56 | +/* If you are using CCS for building, it is probably better to make any such */ |
| 57 | +/* modifications in your CCS project and leave this file alone. */ |
| 58 | +/* */ |
| 59 | +/* --heap_size=0 */ |
| 60 | +/* --stack_size=256 */ |
| 61 | +/* --library=rtsv7M3_T_le_eabi.lib */ |
| 62 | + |
| 63 | +/* The starting address of the application. Normally the interrupt vectors */ |
| 64 | +/* must be located at the beginning of the application. */ |
| 65 | +#define FLASH_BASE 0x0 |
| 66 | +#define FLASH_SIZE 0x58000 |
| 67 | +#define RAM_BASE 0x20000000 |
| 68 | +#define RAM_SIZE 0x14000 |
| 69 | +#define GPRAM_BASE 0x11000000 |
| 70 | +#define GPRAM_SIZE 0x2000 |
| 71 | + |
| 72 | + |
| 73 | +/* System memory map */ |
| 74 | + |
| 75 | +MEMORY |
| 76 | +{ |
| 77 | + /* Application stored in and executes from internal flash */ |
| 78 | + FLASH (RX) : origin = FLASH_BASE, length = FLASH_SIZE |
| 79 | + /* Application uses internal RAM for data */ |
| 80 | + SRAM (RWX) : origin = RAM_BASE, length = RAM_SIZE |
| 81 | + /* Application can use GPRAM region as RAM if cache is disabled in the CCFG |
| 82 | + (DEFAULT_CCFG_SIZE_AND_DIS_FLAGS.SET_CCFG_SIZE_AND_DIS_FLAGS_DIS_GPRAM = 0) */ |
| 83 | + GPRAM (RWX): origin = GPRAM_BASE, length = GPRAM_SIZE |
| 84 | +} |
| 85 | + |
| 86 | +/* Section allocation in memory */ |
| 87 | + |
| 88 | +SECTIONS |
| 89 | +{ |
| 90 | + .intvecs : > FLASH_BASE |
| 91 | + .text : > FLASH |
| 92 | + .const : > FLASH |
| 93 | + .constdata : > FLASH |
| 94 | + .rodata : > FLASH |
| 95 | + .binit : > FLASH |
| 96 | + .cinit : > FLASH |
| 97 | + .pinit : > FLASH |
| 98 | + .init_array : > FLASH |
| 99 | + .emb_text : > FLASH |
| 100 | + .ccfg : > FLASH (HIGH) |
| 101 | + |
| 102 | + .vtable : > SRAM |
| 103 | + .vtable_ram : > SRAM |
| 104 | + vtable_ram : > SRAM |
| 105 | + .data : > SRAM |
| 106 | + .bss : > SRAM |
| 107 | + .sysmem : > SRAM |
| 108 | + .stack : > SRAM (HIGH) |
| 109 | + .nonretenvar : > SRAM |
| 110 | + .TI.noinit : > SRAM |
| 111 | + .gpram : > GPRAM |
| 112 | + |
| 113 | +#ifdef __TI_COMPILER_VERSION__ |
| 114 | +#if __TI_COMPILER_VERSION__ >= 15009000 |
| 115 | +/* Hide section from older compilers not supporting the "ramfunc" attribute. |
| 116 | + See http://processors.wiki.ti.com/index.php/Placing_functions_in_RAM */ |
| 117 | + .TI.ramfunc : {} load=FLASH, run=SRAM, table(BINIT) |
| 118 | +#endif |
| 119 | +#endif |
| 120 | +} |
| 121 | + |
| 122 | +/* Create global constant that points to top of stack */ |
| 123 | +/* CCS: Change stack size under Project Properties */ |
| 124 | +__STACK_TOP = __stack + __STACK_SIZE; |
0 commit comments