📄 csb637_lnk_ram.lds
字号:
/*
*********************************************************************************************************
* uC/TCP-IP
* The Embedded TCP/IP Suite
*
* (c) Copyright 2003-2005; Micrium, Inc.; Weston, FL
*
* All rights reserved. Protected by international copyright laws.
* Knowledge of the source code may not be used to write a similar
* product. This file may only be used in accordance with a license
* and should not be redistributed in any way.
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* GNU LINKER SCRIPT
*
* Filename : CSB33x_lnk_ram.lds
* Version : V1.22
* Programmer(s) : JDH
*********************************************************************************************************
*/
OUTPUT_ARCH(arm)
OUTPUT_FORMAT("elf32-littlearm")
ENTRY(main)
SECTIONS
{
. = 0x20100000;
. = ALIGN(4);
.boot : { *(.boot) }
. = ALIGN(4);
.text : { *(.text) }
. = ALIGN(4);
.rodata : { *(.rodata) }
. = ALIGN(4);
.data : { *(.data) }
. = ALIGN(4);
_bss = .;
.bss : { *(.bss) }
_ebss = .;
end = .;
. = ALIGN(4);
_estack = .;
_heap = .;
. = . + 0x800000; /* Global stack and heap memory size: 8MB. */
_stack = .;
_eheap = .;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -