tibet.txt

来自「嵌入式系统启动代码」· 文本 代码 · 共 19 行

TXT
19
字号
APPL_LR 0x0 	; Position independent
{
	.text +0		; PI attr inherited from parent
					; default execution address is 0x00008000
					; but the code can be moved
	{
		main.o(+CODE, +FIRST)
		* (+RO)	; all the RO sections go here
	}
	.data +0
	{
		* (+RW)	; the RW sections are placed next
	}
	.bss +0
	{
		* (+ZI)	; the ZI sections are placed here
	}
}

⌨️ 快捷键说明

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