瀏覽代碼

Merge pull request #2944 from enkiller/w60x

[bsp][w60x] update GCC linker scripts
Bernard Xiong 5 年之前
父節點
當前提交
6b4cbc6715
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      bsp/w60x/drivers/linker_scripts/link.lds

+ 8 - 0
bsp/w60x/drivers/linker_scripts/link.lds

@@ -10,6 +10,7 @@ MEMORY
 {
     FLASH (rx) : ORIGIN = 0x8010100, LENGTH = 959K    /* 960K-256B */
     RAM (rw) : ORIGIN = 0x20000000, LENGTH = 0x28000  /* 160K */
+    RAM2 (rw) : ORIGIN = 0x20028000, LENGTH = 0x14000 /* 80K */
 }
 
 /* Linker script to place sections and symbol values. Should be used together
@@ -164,6 +165,13 @@ SECTIONS
         __stack_end__ = .;
     } > RAM
 
+    ._bss :
+    {
+        . = ALIGN(8);
+        __bss2_start__ = .;
+        __bss2_end__ = .;
+    } > RAM2
+
     .bss __stack_end__ :
     {
         . = ALIGN(4);