cache2.cmd
来自「ccs3.3下带的基于dm642开发例程」· CMD 代码 · 共 33 行
CMD
33 行
/*
* Copyright (C) 2003 Texas Instruments Incorporated
* All Rights Reserved
*/
/*
*---------cache2.cmd---------
*
*/
MEMORY
{
L2_12: o = 00000000h l = 00030000h /*Upto 192K segment - always SRAM */
L2_3: o = 00030000h l = 00008000h /*32K segment: always cache */
L2_4: o = 00038000h l = 00008000h /*32K segment: always cache */
CE0: o = 80000000h l = 00100000h /* external memory */
}
SECTIONS
{
.cinit > L2_12
.text > L2_12
.stack > L2_12
.bss > L2_12
.const > L2_12
.data > L2_12
.far > L2_12
.switch > L2_12
.sysmem > L2_12
.tables > L2_12
.cio > L2_12
.external > CE0
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?