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

📄 debug_in_flash.scf

📁 利用微處理器LPC2132去驅動LCD 128*64
💻 SCF
字号:
;;; Copyright ARM Ltd 2002. All rights reserved.

;; Embedded scatter file
;; Stack and Heap are located in the SRAM


ROM_LOAD 0x00000000  
{
    ROM_EXEC 0x00000000
    {
        vectors.o (Vect, +FIRST)
        init.o 
        __main.o                         ; C Library entry point, must be in a root region
        *  (Region$$Table)               ; this section must be in a root region 
        *  (ZISection$$Table)            ; this section must be in a root region
        * (+RO )
     }

    SRAM 0x40000000                   
    {                                    
       
        * (+RW, +ZI)                ; any remaining code inc C lib.
    }

    HEAP +0 UNINIT
    {
        stackheap.o (heap)
    }
    
    STACK 0x40004000 UNINIT                 
    {
        stackheap.o (stacks)
    }
    
   
}

⌨️ 快捷键说明

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