你好陌生人 发表于 2013-10-31 12:04
我下载之后对flash查空,发现flash是空的,这个肯定是没有下载进去了,我现在把配置文件发给你,你看一下 ... ;/****************************************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: Ganda
;** Modified date: 2005-06-15
;** Version: 1.01
;** Descriptions: Only for MagicARM2200
;**
;**------------------------------------------------------------------------------------------------------
;** Modified by:
;** Modified date:
;** Version:
;** Descriptions:
;**
;********************************************************************************************************/
ROM_LOAD 0x80000000 ;// Origination Point of Code (Code in Exflash)
{
ROM_EXEC 0x80000000 ;// Origination Point of Executing
{
Startup.o (vectors, +First)
* (+RO)
}
IRAM 0x40000040 ;// Origination Point of Internal SRAM
{ ;// 0x40000000 ~ 0x4000003F for Vector(Redundancy)
Startup.o (MyStacks)
* (+RW,+ZI)
}
STACKS_BOTTOM +0 UNINIT
{
Startup.o (StackBottom)
}
STACKS 0x40004000 UNINIT ;// End Point of Internal SRAM
{
Startup.o (Stacks)
}
HEAP +0 UNINIT
{
Startup.o (Heap)
}
HEAP_BOTTOM 0x80080000 UNINIT ;// End Point of External SRAM
{
Startup.o (HeapTop)
}
}
|