⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 graph.cmd

📁 TMS320c6000系列DSP做图像处理的应用举例
💻 CMD
字号:
/*
 *  Copyright 1998 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 ========
 *
 */
-w
-heap  0x1000
-stack 0x1000
-lrts6701.lib

MEMORY
{
    BOOT_RAM:   o = 00000000h   l = 00000c00h
    VECT:		o = 00000c00h   l = 00000400h
    IRAM:       o = 00001000h   l = 0000e000h   
    CE0:        o = 80001000h   l = 000ff000h 
}

SECTIONS
{
    .boot_load  >       BOOT_RAM
    .vectors    >       VECT    
    .text1       >      IRAM    
    .text2       >      IRAM
    .text3       >      IRAM
    .text4       >      IRAM    
    .text       >       IRAM    
    .stack      >       IRAM    
    .bss        >       IRAM    
    .bss1       >       CE0    
    .cinit      >       IRAM    
    .const      >       IRAM  
    .data       >       IRAM  
    .far        >       IRAM  
    .switch     >       IRAM  
    .sysmem     >       IRAM  
    .tables     >       IRAM  
    .cio        >       IRAM  
}                             

 

⌨️ 快捷键说明

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