?? mmu.s
字號:
; These functions are needed in the simple boot program.
; They came from the .axf file which samsung gives.
; Code adjusted by : yangchu
; 2004.9.17
AREA mmu, CODE, READONLY
; void MMU_EnableICache(void)
;
; This function enables instruction cache in ARM920T.
EXPORT MMU_EnableICache
MMU_EnableICache
mrc p15,0x0,r0,c1,c0,0
orr r0,r0,#0x1000
mcr p15,0x0,r0,c1,c0,0
mov pc,r14
; void MMU_SetAsyncBusMode(void)
;
; This function sets the AMBA bus to be asyc. mode.
EXPORT MMU_SetAsyncBusMode
MMU_SetAsyncBusMode
mrc p15,0x0,r0,c1,c0,0
orr r0,r0,#0xc0000000
mcr p15,0x0,r0,c1,c0,0
mov pc,r14
END
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -