final_scat.scf

来自「ADS1.2 samples」· SCF 代码 · 共 49 行

SCF
49
字号
;;; 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)
        __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
    }

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

    HEAP +0 UNINIT
    {
        stackheap.o (heap)
    }
    
    STACKS 0x40000 UNINIT                 
    {
        stackheap.o (stacks)
    }
    
    Timer1 0x13000100 UNINIT
    {
	timer.o (+ZI)
    }

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

⌨️ 快捷键说明

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