noncopytcptestee.cmd

来自「在dm642开发平台上实现dsp与主机之间的通信实例」· CMD 代码 · 共 37 行

CMD
37
字号
/*
 *  ============================================================
 *  Copyright 2007 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.
 *  ============================================================
 *  Automated Revision Information
 *  Changed: $Date: 2007-08-31 09:43:07 -0700 (Fri, 31 Aug 2007) $
 *  Revision: $Revision: 3909 $ 
 */
/* 
 *  ======== nonCopyTCPtestee.cmd ========
 */

-levmdm642cfg.cmd

-lcslDM642.lib

/*
//  The below buffers are aligned on a 128 bytes boundary (L2 Cache line). 
//  Placement of these buffer can affect performance when Cache is enabled.
//  Refer to the NDK benchmark application note for additional information.
//
//   .far:NDK_PACKETMEM  - Packet buffer memory (defined in HAL/OS libs)
//   .far:NDK_MMBUFFER   - Scatchpad memory used by mmAlloc()
//   .far:NDK_OBJMEM     - Large arrays (defined by example code only)
*/

SECTIONS {

    .far:NDK_PACKETMEM {} align = 128 > SDRAM 
    .far:NDK_MMBUFFER {} align = 128 > SDRAM 
    .far:NDK_OBJMEM {} align = 128 > SDRAM 

}

⌨️ 快捷键说明

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