graph_c54x.mem

来自「该包是在CCS下的用于可见光和红外光的图像融合程序。 融合规则为加权法」· MEM 代码 · 共 28 行

MEM
28
字号
MEMORY c54x
   (FAMILY = c54x) {


   /* program space */
   SPACE program_memory PAGE 0 :
      VECS(RWXI): o= 0x0080 e= 0x00FE /* 128bytes vector table space */
      PROG(RWXI): o= 0x0100 e= 0x40FF /* 8K program memory space */

   /* data space */
   SPACE data_memory PAGE 1 :
      SCRA(RWI ): o= 0x0060 e= 0x007E /* scratch pad mem space */
      STCK(RWI ): o= 0x5100 e= 0x5FFF /* 3K words for stack */
      DAT1(RWI ): o= 0x6000 e= 0x7FFF /* 256 words for sys data */

   SPACE IO_memory PAGE 2 :
}

/* Table of address ranges vs. sets of spaces that share them. */
/* For each entry in the table,                                */
/* if a region's parent appears in the space set               */
/* and the region is fully contained in the address range,     */
/* then the region is shared with the other spaces of the set. */
SHARED_ADDRESSES c54x {
   o= 0x80 e= 0x7FFF {program_memory,
                      data_memory}
}

⌨️ 快捷键说明

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