-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathmemory-map.ld.tmpl
More file actions
48 lines (46 loc) · 3.05 KB
/
memory-map.ld.tmpl
File metadata and controls
48 lines (46 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/****************************************************************************
* *
* GNAT COMPILER COMPONENTS *
* *
* A R M *
* *
* Linker Script File *
* *
* Copyright (C) 1999-2002 Universidad Politecnica de Madrid *
* Copyright (C) 2003-2006 The European Space Agency *
* Copyright (C) 2003-2015 AdaCore *
* *
* GNAT is free software; you can redistribute it and/or modify it under *
* terms of the GNU General Public License as published by the Free Soft- *
* ware Foundation; either version 2, or (at your option) any later ver- *
* sion. GNAT is distributed in the hope that it will be useful, but WITH- *
* OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
* for more details. You should have received a copy of the GNU General *
* Public License distributed with GNAT; see file COPYING. If not, write *
* to the Free Software Foundation, 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301, USA. *
* *
* As a special exception, if you link this file with other files to *
* produce an executable, this file does not by itself cause the resulting *
* executable to be covered by the GNU General Public License. This except- *
* ion does not however invalidate any other reasons why the executable *
* file might be covered by the GNU Public License. *
* *
* GNARL was developed by the GNARL team at Florida State University. *
* Extensive contributions were provided by Ada Core Technologies, Inc. *
* The executive was developed by the Real-Time Systems Group at the *
* Technical University of Madrid. *
* *
****************************************************************************/
MEMORY
{
flash (rx) : ORIGIN = 0x08000000, LENGTH = "${STM32_Linker_Flash_Size}"
sram12 (rwx) : ORIGIN = 0x20000000, LENGTH = "${STM32_Linker_RAM_Size}"
ccm (rw) : ORIGIN = 0x10000000, LENGTH = "${STM32_Linker_CCM_Size}"
}
REGION_ALIAS("sram_tx", sram12)
REGION_ALIAS("sram_ro", sram12)
REGION_ALIAS("sram_bs", sram12)
REGION_ALIAS("sram_da", sram12)
REGION_ALIAS("ccm_da", ccm)