?? init.s
字號(hào):
/* * Name : init.s * Disc : initial the environment * 2007-07-30 by Qingmin Liu */@ stack size@ it should be less than 4KBytes.equ stack_top, 0x1000@ WDT register.equ WTCON, 0x53000000.text.global _start_start: @ disable watch dog timer mov r0, #WTCON mov r1, #0x0 str r1, [r0] @ setup the stack ldr sp, =stack_top @ jump to C code entry main, and it should be @ supported by stack. Therefore, you must setup @ the stack. bl mainstop: b stop.end
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -