mem_d.scf

来自「基于LPC2400入门_以SmartARM2400为例 支持LPC2400系列」· SCF 代码 · 共 69 行

SCF
69
字号
;/****************************************Copyright (c)**************************************************
;**                               Guangzou ZLG-MCU Development Co.,LTD.
;**                                      graduate school
;**                                 http://www.zlgmcu.com
;**
;**--------------File Info-------------------------------------------------------------------------------
;** File Name: men_a.scf
;** Last modified Date:  2004-09-17
;** Last Version: 1.0
;** Descriptions: Scatter File
;**
;**------------------------------------------------------------------------------------------------------
;** Created By: Chenmingji
;** Created date:   2004-09-17
;** Version: 1.0
;** Descriptions: First version
;**
;**------------------------------------------------------------------------------------------------------
;** Modified by:
;** Modified date:
;** Version:
;** Descriptions:
;**
;********************************************************************************************************/

ROM_LOAD 0x00000000 
{
    ROM_EXEC 0x00000000 
    {
        Startup.o (vectors, +First)
        * (+RO)
    }
}

IRAM_LOAD 0x40000000
{
    IRAM 0x40000000
	{
	    Startup.o (MyStacks)
	    * (+RW,+ZI)
	}

	HEAP +0 UNINIT
	{
	    Startup.o (Heap)
	}

	STACKS_BOTTOM +0
	{
	    Startup.o (StackBottom)
	}

	STACKS 0x40008000 UNINIT    ;for LPC2468
	{
	    Startup.o (HeapTop)
	    Startup.o (Stacks)
	}
}


ROM_LOAD1 0x80000000
{
    ROM_EXEC1 0x80000000
    {
        main.o (+RO)
    }
}

⌨️ 快捷键说明

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