lpc2146_flash.scat

来自「LPC2148 bulk传输,带DMA的,而且还带TNKernel实时操作系统」· SCAT 代码 · 共 26 行

SCAT
26
字号

ROM_LOAD 0x00000000
{
    ER_RO +0				; Execution region called ER_R0
    					; region starts at end of previous
    {
        tnkernel_startup_armcc.o (Vect, +FIRST) ; Vect region is 1st
        *(+RO)		                      ; all other RO sections follow
    }

    ER_RW 0x40000000        		; Execution region called ER_RW
    					; region starts at 0x40000000
    {
        *(+RW)				; all RW sections follow
    }

    ER_ZI +0				; Execution region called ER_ZI
    					; region starts at end of previous
    {
        *(+ZI)				; all ZI sections follow
    }
}



⌨️ 快捷键说明

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