提交 496e7274 编写于 作者: B bernard.xiong@gmail.com

update GNU ld script.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1558 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 3d4e5e1f
/*
* linker script for STM32F10x with GNU ld
* linker script for STM32F107 (256kB Flash, 64kB SRAM ) with GNU ld
* bernard.xiong 2009-10-14
*/
/* Program Entry, set to mark it as "used" and avoid gc */
MEMORY
{
CODE (rx) : ORIGIN = 0x08000000, LENGTH = 0x00080000
CODE (rx) : ORIGIN = 0x08000000, LENGTH = 0x00040000
DATA (rw) : ORIGIN = 0x20000000, LENGTH = 0x00010000
}
ENTRY(Reset_Handler)
......@@ -77,6 +77,7 @@ SECTIONS
_sbss = .;
*(.bss)
*(.bss.*)
*(COMMON)
. = ALIGN(4);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册