1103b7ef5ddc001c1d26f8cb9cfd5848

来自「LPC21XX series GSM+GPS interfacing and a」· 代码 · 共 43 行

TXT
43
字号
MEMORY {	flash	: ORIGIN = 0x00000000, LENGTH = 0x0003E000	ram		: ORIGIN = 0x40000200, LENGTH = 0x00003DFC}__stack_end__ = 0x40003DFC - 4;SECTIONS{	. = 0;	startup : { *(.startup)} >flash	prog :	{		*(.text)		*(.rodata)		*(.rodata*)		*(.glue_7)		*(.glue_7t)	} >flash	__end_of_text__ = .;	.data :	{		__data_beg__ = .;		__data_beg_src__ = __end_of_text__;		*(.data)		__data_end__ = .;	} >ram AT>flash	.bss :	{		__bss_beg__ = .;		*(.bss)	} >ram	/* Align here to ensure that the .bss section occupies space up to _end.  Align after .bss to ensure correct alignment even if the .bss section disappears because there are no input sections.  */	. = ALIGN(32 / 8);}. = ALIGN(32 / 8);_end = .;_bss_end__ = . ; __bss_end__ = . ; __end__ = . ;PROVIDE (end = .);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?