scat_ram.scf

来自「Nand Flash (SAMSUNG_K9K1G08U0B) boot loa」· SCF 代码 · 共 46 行

SCF
46
字号

; The region HEAP is used to locate the bottom of the heap immediately above 
; the ZI data ("+0"). The heap will grow up from this address.
;
; The region STACKS is used to locate the top of the memory used to store
; the stacks for each mode. The stacks will grow down from this address.
;
; The region UART0 is used to map the position of the Integrator UART0 registers.
;
; Regions marked UNINIT will be left uninitialized, i.e. they will not be 
; zero-initialized by the C library when it starts-up.

;ROM_LOAD 0xC0004000
ROM_LOAD 0x80004000
{
    code +0
    {
        init.o (Init, +First)
        * (+RO, +RW,+ZI )
    }



    HEAP +0 UNINIT
    {
        heap.o (+ZI)
    }
;           Stack Size
;           |
;    STACKS +0x100000 UNINIT
    STACKS +0x2000 UNINIT
    {
        stack.o (+ZI)
    }

;;    BUFFER_START 0xC2000000 UNINIT
;;    {
;;		buffer_start.o (+ZI)
;;    }

;;    BUFFER_END +0x1400000 UNINIT
;;    {
;;    	buffer_end.o (+ZI)
;;    }
}

⌨️ 快捷键说明

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