matrix.cmd
来自「dsp矩阵相乘函数」· CMD 代码 · 共 34 行
CMD
34 行
/*
* Copyright 2001 by Texas Instruments Incorporated.
* All rights reserved. Property of Texas Instruments Incorporated.
* Restricted rights to use, duplicate or disclose this code are
* granted through contract.
*/
/*
* ======== hello.cmd ========
*
*/
-c
-heap 0x200
-stack 0x400
MEMORY
{
IPRAM : origin = 0x0, len = 0x10000
IDRAM : origin = 0x80000000, len = 0x10000
}
SECTIONS
{
.vectors > IPRAM
.text > IPRAM
.bss > IDRAM
.cinit > IDRAM
.const > IDRAM
.far > IDRAM
.stack > IDRAM
.cio > IDRAM
.sysmem > IDRAM
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?