⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flash_ram.scf

📁 FreeScale imx21开发板Nand flash烧写程序
💻 SCF
字号:

; 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
{
    code +0
    {
        vector.o (Vect, +First)
        * (+RO)
    }

    RAM  0xC0009000
    {
        * (+RW,+ZI)
    }

    HEAP 0xC000A000 UNINIT
    {
        heap.o (+ZI)
    }

    STACKS 0xC000B000 UNINIT
    {
        stack.o (+ZI)
    }
}

⌨️ 快捷键说明

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