2410.sc

来自「2410 boot loader,usb ftp」· SC 代码 · 共 19 行

SC
19
字号
LR_1 0x0               ; load region starts at 0x0
{                      ; start of execution region descriptions       
    INIT +0            ; load address and execution address of this
    { 2410init.o (+RO) ; initial start in 4k stepstone @ 0x0 address
    }
    
    RO 0x33E00000      ; load address = execution address
    { *(+RO)           ; .text section other than those in 2410init.o
    } 
    
    RW 0x33FF0000
    { *(+RW)           ; .data section
    }

    ZI +0              ; .bss
    { *(+ZI)
    }    

}

⌨️ 快捷键说明

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