6410_scatter.txt
分散加载描述文件,用于armlink的输入参数, 他指定映像文件内部各区域的下载和运行时的位置, armlink会根据文件的一些区域相关的符号, 他们是全局的供用户建立运行时环境时使用。 txt文件中指定的代码启始地址是0x50200000, 入口目标文件是startup.o ,程序入口地址是init,紧接着该段依次存放RO( 代码与只读数据),RW(读写变量),zi未初始化变量。
;/**************************************************************************************
;*
;* Project Name : S3C6400 Validation
;*
;* Copyright 2006 by Samsung Electronics, Inc.
;* All rights reserved.
;*
;* Project Description :
;* This software is only for validating functions of the S3C6400.
;* Anybody can use this software without our permission.
;*
;*--------------------------------------------------------------------------------------
;*
;* File Name : 6410_scatter.txt
;*
;* File Description : Scatterload structure for downloading image with Debugger/
;*
;* Author : Heemyung.Noh
;* Dept. : AP Development Team
;* Created Date : 2007/09/04
;*
;* History
;* - Created(Heemyung.Noh 2007/09/04)
;*
;**************************************************************************************/
DRAM 0x50200000
{
CODE 0x50200000
{
startup.o (Init,+FIRST)
scatter_load.o (+RO)
* (+RO)
* (+RW, +ZI)
}
IRAM 0x0c000400 0xc00 ;0x0c000000~0x0c0003ff : Exception vector area(Nand Booting)
{
;dmc.o (+RO)
;dmc.o (+RW, +ZI) ; all remaining data
}
ITCM 0x80000000 0x4000
{
; dmc.o (+RO)
dmc_library.o (+RO)
}
DTCM 0x80004000 0x4000
{
; dmc.o (+RW, +ZI)
dmc_library.o (+RW, +ZI)
}
}