scate.txt

来自「这是一个简单的动态加载的一个demo工程 内附详细说明」· 文本 代码 · 共 21 行

TXT
21
字号

LR_OUR 0x0 PI ;   RELOC        ; The first load region is at 0x010000. 
{
    ER_RO +0            ; The PI attribute is inherited from parent.
                        ; The default execution address is 0x010000, but the code can be moved.
    {
		al_thumb.o (aOUR_ENGINE_AS,+first)
        * (+RO)         ; All the RO sections go here.
    }
    ER_RW +0    ; PI attribute is overridden by ABSOLUTE.
    {
        * (+RW)         ; The RW sections are placed next	. They cannot be moved.
    }
    ER_ZI +0            ; ER_ZI region placed after ER_RW region.
    {
        * (+ZI)         ; All the ZI sections are placed consecutively here.
    }
     
}

⌨️ 快捷键说明

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