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

DSP编程

开发平台:

C/C++

  1. /***********************************
  2. * FILENAME: $RCSfile: Link.cmd,v $
  3. * VERSION : $Revision: 1.3 $
  4. * DATE    : $Date: 2001/04/19 18:57:05 $
  5. * Copyright (c) 2001 Texas Instruments Incorporated
  6. *
  7. * Description: 
  8. * Simple Linker Control File for TEB6416 FlashBurn FBTC.
  9. *   This was heisted from some examples I found.
  10. */
  11. -w /*change*/
  12. -c
  13. -heap  0x2000
  14. -stack 0x4000
  15. -l rts6400.lib /*change*/
  16. /* Memory Map
  17.  */
  18. MEMORY
  19. {
  20. PMEM: o = 00000000h l = 00010000h
  21. BMEM: o = 80000000h l = 00010000h
  22. }
  23. SECTIONS
  24. {
  25.     .text   >  PMEM
  26.     .far    >  PMEM
  27.     .stack  >  PMEM
  28.     .bss    >  PMEM
  29.     .cinit  >  PMEM
  30.     .pinit  >  PMEM
  31.     .cio    >  PMEM
  32.     .const  >  PMEM
  33.     .data   >  PMEM
  34.     .switch >  PMEM
  35.     .sysmem >  BMEM
  36. }