mem_a.scf
上传用户:sdaoma
上传日期:2013-08-07
资源大小:3838k
文件大小:2k
源码类别:

GPS编程

开发平台:

C/C++

  1. ;/****************************************Copyright (c)**************************************************
  2. ;**                               Guangzou ZLG-MCU Development Co.,LTD.
  3. ;**                                      graduate school
  4. ;**                                 http://www.zlgmcu.com
  5. ;**
  6. ;**--------------File Info-------------------------------------------------------------------------------
  7. ;** File Name:              men_a.scf
  8. ;** Last modified Date:     2004-09-17
  9. ;** Last Version:           1.0
  10. ;** Descriptions:           Scatter File
  11. ;**
  12. ;**------------------------------------------------------------------------------------------------------
  13. ;** Created By:             Chenmingji
  14. ;** Created date:           2004-09-17
  15. ;** Version:                1.0
  16. ;** Descriptions:           First version
  17. ;**
  18. ;**------------------------------------------------------------------------------------------------------
  19. ;** Modified by:            Ganda
  20. ;** Modified date:          2005-06-15
  21. ;** Version:                1.01
  22. ;** Descriptions:           Only for MagicARM2200
  23. ;**
  24. ;**------------------------------------------------------------------------------------------------------
  25. ;** Modified by: 
  26. ;** Modified date:
  27. ;** Version: 
  28. ;** Descriptions:  
  29. ;**
  30. ;********************************************************************************************************/
  31. ROM_LOAD 0x80000000                     ;// Origination Point of Code (Code in Exflash)
  32. {
  33.     ROM_EXEC 0x80000000                 ;// Origination Point of Executing
  34.     {
  35.         Startup.o (vectors, +First)
  36.         * (+RO)
  37.     }
  38.     IRAM 0x40000040                     ;// Origination Point of Internal SRAM
  39.     {                                   ;// 0x40000000 ~ 0x4000003F for Vector(Redundancy)
  40.         Startup.o (MyStacks)
  41.     }
  42.     STACKS_BOTTOM +0 UNINIT
  43.     {
  44.         Startup.o (StackBottom)
  45.     }
  46.     STACKS 0x40004000 UNINIT            ;// End Point of Internal SRAM
  47.     {
  48.         Startup.o (Stacks)
  49.     }
  50.     ERAM 0x81000000                     ;// Origination Point of External SRAM
  51.     {
  52.         * (+RW,+ZI)
  53.     }
  54.     HEAP +0 UNINIT
  55.     {
  56.         Startup.o (Heap)
  57.     }
  58.     HEAP_BOTTOM 0x81800000 UNINIT       ;// End Point of External SRAM
  59.     {
  60.         Startup.o (HeapTop)
  61.     }
  62. }