fwu_lpc2146_flash_keil.scat

来自「LPC2148的USB口固件升级代码」· SCAT 代码 · 共 31 行

SCAT
31
字号

ROM_LOAD 0x00000000
{
    ER_RO +0				; Execution region called ER_R0
    					; region starts at end of previous
    {
       fwu_startup_keil_rvc.o (RESET, +FIRST) ; RESET region is 1st
    }

    ER_R1 0x1FC FIXED 	                ; Execution region called ER_R1
    					; region starts at end of previous
    {
        fwu_startup_hardware.o (flashprot,+FIRST)  
        *(+RO)		                          ; all other RO sections follow
    }

    ER_RW 0x40000040        		; Execution region called ER_RW
    					; region starts at 0x40000040
    {
        *(+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 + -
显示快捷键?