ex9p5cmd.cmd
来自「用于DSK5416的程序」· CMD 代码 · 共 24 行
CMD
24 行
/********************************************************
*
* DSK5416 Command File for Example 9.5
*
*********************************************************/
MEMORY
{
PAGE 0: /* Program space */
VECS : origin = 0x0080, length = 0x0080 /* vector table space */
PROG : origin = 0x1000, length = 0x1000 /* Pgm mem space */
PAGE 1: /* Data space */
DAT1 : origin = 0x2000, length = 0x100 /* 256 words for Data */
}
SECTIONS
{
.vectors : {} > VECS PAGE 0 /* Interrupt Vector table */
.text : {} > PROG PAGE 0 /* Program code goes here */
.bss : {} > DAT1 PAGE 1 /* uninitialized variables */
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?