startup.s

来自「S3C24A0的完整BSP包,对开发此芯片的开发者很有用.」· S 代码 · 共 60 行

S
60
字号
;******************************************************************************
;*
;* System On Chip(SOC)
;*
;* Copyright (c) 2003 Mobile Solution Project Team, Samsung Electronics, Inc.
;* All rights reserved.
;*
;* This software is the confidential and proprietary information of Samsung 
;* Electronics, Inc("Confidential Information"). You Shall not disclose such 
;* Confidential Information and shall use it only in accordance with the terms 
;* of the license agreement you entered into Samsung.
;*
;*-----------------------------------------------------------------------------
;*
;*	S3C24A0 BSP (WinCE.NET) 
;*   
;* startup.s	: BSP Startup Code(Entry Point)
;*
;* @author		: 
;*  
;* @date			:	2004/07/07
;* 
;* Log:
;*      2004/07/07  Start
;*      
;******************************************************************************


        INCLUDE kxarm.h

        ;INCLUDE armmacros.s
    

        IMPORT  KernelStart

        TEXTAREA
        
        ; Include memory configuration file with g_oalAddressTable

        INCLUDE oemaddrtab_cfg.inc
 
        LEAF_ENTRY StartUp

        ; Compute the OEMAddressTable's physical address and 
        ; load it into r0. KernelStart expects r0 to contain
        ; the physical address of this table. The MMU isn't 
        ; turned on until well into KernelStart.  






        add     r0, pc, #g_oalAddressTable - (. + 8)
        bl      KernelStart

        ENTRY_END 

        END

⌨️ 快捷键说明

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