volume.cmd
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2001 by Texas Instruments Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  */
  7. /*
  8.  *  ======== volume.cmd ========
  9.  *
  10.  */
  11. MEMORY 
  12. {
  13.    SDRAM       : origin = 0x00000000,  len = 0x400000
  14. }
  15. SECTIONS
  16. {
  17.         .vectors > SDRAM
  18.         .text    > SDRAM
  19.         .bss     > SDRAM
  20.         .cinit   > SDRAM
  21.         .const   > SDRAM
  22.         .far     > SDRAM
  23.         .stack   > SDRAM
  24.         .cio     > SDRAM
  25.         .sysmem  > SDRAM
  26. }