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

📄 final_scat.scat

📁 realview22.rar
💻 SCAT
字号:
;;; Copyright ARM Ltd 2002. All rights reserved.

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


ROM_LOAD 0x24000000 0x04000000
{
    ROM_EXEC 0x24000000 0x04000000
    {
        init.o (Init, +FIRST)            ; Initialization code
        * (InRoot$$Sections)             ; All library sections that must be in a root region
                                         ; e.g. __main.o, __scatter*.o, * (Region$$Table)
    }

    SRAM 0x0000 0x20000                  
    {                                    
        vectors.o (Vect, +FIRST)
        * (+RO, +RW, +ZI)                ; any remaining code inc C lib.
    }

    HEAP +0 EMPTY 0x3000
    {

    }

    STACKS 0x40000 EMPTY -0x3000
    {

    }
    
    Timer1 0x13000100 UNINIT
    {
        timer.o (+ZI)
    }

    IRQ0 0x14000000 UNINIT
    {
        irq.o (+ZI)
    }
    
    UART0 0x16000000 UNINIT
    {
        uart.o (+ZI)
    }
}

⌨️ 快捷键说明

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