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

📄 scat_c.scf

📁 How to detect Battery voltage in DragonBall SZ platform
💻 SCF
字号:
;;; Copyright ARM Ltd 2000. All rights reserved.
;
; This scatterloading descriptor file defines:
; one load region (ROM_LOAD) and 2 execution regions (ROM_EXEC & RAM)
;
; The entire program (code & data) is placed in ROM at ROM_LOAD.
;
; The RO code will execute from ROM_EXEC (its execution address (0x0) is the same
; as its load address (0x0), so it does not need to be moved (a 'root region').
; The exception vector table (AREA Vect in vectors.s) must appear at 0x0, so is 
; placed '+First' in the image.
;
; The RW data will get relocated (copied) from ROM_LOAD to RAM at 0x28000000.
; The ZI data will get created (initialized) in RAM, above the RW data.
;
; This scatterfile is similar to linking with:
; armlink -ro-base 0x0 -rw-base 0x28000000 -first vectors.o(Vect)

;ROM_LOAD 0x0
;{
;    ROM_EXEC 0x0
;    {
;        vector.o (Vect, +First)
;        * (+RO)
;    }
;    RAM 0x28000000
;    {
;        * (+RW,+ZI)
;    }
;}

ERAM 0x0031FC00
{
	ERAM 0x0031FC00
	{
		vector.o (Vect, +First)
	}
}
ROM 0x00300000
{
	ROM 0x00300000
	{		
		* (+RO)
	}
    RAM +0
    {
    	
        * (+RW,+ZI)
    }
}

⌨️ 快捷键说明

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