launch.s

来自「Sirf/Centrality公司GPS平台AtlasIII芯片AT640的Nb」· S 代码 · 共 39 行

S
39
字号
;*
;* Copyright (c) 2002-2003 Centrality Communications, Inc.
;* All Rights Reserved.
;*
;* Confidential and Proprietary to Centrality Communications Inc.
;*
;* launch.s: launch to CE
;* Auther: Tiefeng Tangrui Lin Zhisong
;*
;* $Log: launch.s,v $
;* Revision 1.1  2003/12/25 08:25:25  tangrui
;* Added by Rui Tang
;*
;* Revision 1.1.1.1  2003/10/10 07:16:10  weijie
;* no message
;*
;* Revision 1.2  2003/07/18 08:18:21  tangrui
;* no message
;*
;* Revision 1.1  2003/06/26 20:49:39  tangrui
;* no message
;*
;* Revision 1.2  2003/03/06 13:33:51  zhisong
;* disable dcache & mmu before we go to CE
;*
;
        AREA LaunchNk, CODE, READONLY

        EXPORT Launch
Launch
    mrc p15, 0, r1, c1, c0, 0
    bic r1, r1, #0x1200             ; Turning off ICache
    bic r1, r1, #0x7F               ; Turning off DCache & MMU
    mcr p15, 0, r1, c1, c0, 0       ; Disable MMU

    mov     pc, r0          ; Jump to program we are launching.

    END

⌨️ 快捷键说明

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