📄 boot.asm
字号:
;
;********************************************************************************************************
; uC/OS-II
; The Real-Time Kernel
;
; AT91 Bootloader
;
; File : boot.asm
; Version : V1.00
; By : Eric Shufro
;
; For : ARM7 or ARM9
; Mode : ARM or Thumb
; Toolchain : IAR's EWARM V4.40 and higher
;********************************************************************************************************
;
;********************************************************************************************************
; CODE GENERATION DIRECTIVES
;********************************************************************************************************
RSEG CODE:CODE:NOROOT(2)
CODE32
;********************************************************************************************************
; PUBLIC FUNCTIONS
;********************************************************************************************************
PUBLIC AppBoot
;********************************************************************************************************
; Boot()
;
; Description: This assembly routines is called after the application binary has been
; copied from the source medium into RAM.
;
; Arguments : R0 contains the address starting address of the applicaiton to boot.
;********************************************************************************************************
AppBoot:
MOV PC, R0
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -