]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - keyboard/teensy_lc_onekey/ld/MKL26Z64.ld
Merge commit '5a0132f1c1c9a14fd2941f0a5e29bbf5e31da20c' into master-core-pull
[max/tmk_keyboard.git] / keyboard / teensy_lc_onekey / ld / MKL26Z64.ld
1 /*\r
2     ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio.\r
3 \r
4     This file is part of ChibiOS.\r
5 \r
6     ChibiOS is free software; you can redistribute it and/or modify\r
7     it under the terms of the GNU General Public License as published by\r
8     the Free Software Foundation; either version 3 of the License, or\r
9     (at your option) any later version.\r
10 \r
11     ChibiOS is distributed in the hope that it will be useful,\r
12     but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14     GNU General Public License for more details.\r
15 \r
16     You should have received a copy of the GNU General Public License\r
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
18 */\r
19 \r
20 /*\r
21  * KL26Z64 memory setup.\r
22  */\r
23 MEMORY\r
24 {\r
25   flash0   :  org = 0x00000000,  len = 0xc0\r
26   flashcfg :  org = 0x00000400,  len = 0x10\r
27   flash    :  org = 0x00000410,  len = 62k - 0x410\r
28   eeprom_emu : org = 0x0000F800, len = 2k\r
29   ram0     :  org = 0x1FFFF800,  len = 8k\r
30   ram1     :  org = 0x00000000,  len = 0\r
31   ram2     :  org = 0x00000000,  len = 0\r
32   ram3     :  org = 0x00000000,  len = 0\r
33   ram4     :  org = 0x00000000,  len = 0\r
34   ram5     :  org = 0x00000000,  len = 0\r
35   ram6     :  org = 0x00000000,  len = 0\r
36   ram7     :  org = 0x00000000,  len = 0\r
37 }\r
38 \r
39 __eeprom_workarea_start__ = ORIGIN(eeprom_emu);\r
40 __eeprom_workarea_size__  = LENGTH(eeprom_emu);\r
41 __eeprom_workarea_end__   = __eeprom_workarea_start__ + __eeprom_workarea_size__;\r
42 \r
43 /* RAM region to be used for Main stack. This stack accommodates the processing\r
44    of all exceptions and interrupts*/\r
45 REGION_ALIAS("MAIN_STACK_RAM", ram0);\r
46 \r
47 /* RAM region to be used for the process stack. This is the stack used by\r
48    the main() function.*/\r
49 REGION_ALIAS("PROCESS_STACK_RAM", ram0);\r
50 \r
51 /* RAM region to be used for data segment.*/\r
52 REGION_ALIAS("DATA_RAM", ram0);\r
53 \r
54 /* RAM region to be used for BSS segment.*/\r
55 REGION_ALIAS("BSS_RAM", ram0);\r
56 \r
57 /* RAM region to be used for the default heap.*/\r
58 REGION_ALIAS("HEAP_RAM", ram0);\r
59 \r
60 INCLUDE ld/rules_kinetis.ld\r