sitsang.scf.bak

来自「嵌入式开发中触摸屏的显示读写设置,可以显示文字等简单功能」· BAK 代码 · 共 19 行

BAK
19
字号
APPL_LR 0x0 PI	; 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 + -
显示快捷键?