📄 6416test.cmd
字号:
/*************************************************
; Copyright, 2007-2008, HEU-804.
; File name: 6416test.cmd
; Author: Ma Xiaodong
; Version: 1.0
; Date: 2007/05/05
; Description: This program is used to distribute the memory of 6416.
; History:
; Date: 2004/12/11
; Author: Liu Yunhe
;*************************************************/
/*
-heap 0x400 //defines a 1k heap (.sysmem section)
-stack 0x800 //defines a 2k stack (.stack section)
-m 6416test.map //creates a linker map listing and puts it in .map
*/
MEMORY
{
BOOT: o = 0x0, l = 0x1800
ISRAM: o = 0x1800, l = 0x100000
}
SECTIONS
{
/*段名必须和.asm文件中.sect伪指令设置的段名相同*/
.vectors > BOOT
.text > ISRAM
.sj > BOOT
.bss > ISRAM
.cinit > ISRAM
.const > ISRAM
.far > ISRAM
.stack > ISRAM
.cio > ISRAM
.sysmem > ISRAM
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -