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

📄 c54x.cmd

📁 该包是在CCS下的用于可见光和红外光的图像融合程序。 融合规则为加权法
💻 CMD
字号:
/***********************************************************************
** Memory Map and Section Definition
***********************************************************************/


-m elephant.map
-c
-heap  0x2000
-stack 0x2000

MEMORY
{
	PAGE 0: /* program space */
		VECS: origin = 0x0080, length = 0x007f /* 128bytes vector table space */
		PROG: origin = 0x0100, length = 0x8000 /* 8K program memory space */
	PAGE 1: /* data space */
		SCRA: origin = 0x0060, length = 0x001f /* scratch pad mem space */
		STAC: origin = 0x2000, length = 0xfff
		DAT1: origin = 0x3000, length = 0xB000 /* 48k words for sys data */
}


SECTIONS     
{
	.vectors :  {} > VECS PAGE 0 /* interrupt vector table */
	.text :     {} > PROG PAGE 0 /* program code */
	.cinit:     {} > DAT1 PAGE 1 
	.data :     {} > DAT1 PAGE 1 /* initialized data */
	.bss :      {} > DAT1 PAGE 1 /* software stack section */
	.stack :    {} > DAT1 PAGE 1 /* uninitialized vars for applications */
	
}













⌨️ 快捷键说明

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