boot.asm

来自「ucOS_9263_Source ucOS-ii for 9263 port,」· 汇编 代码 · 共 43 行

ASM
43
字号
;
;********************************************************************************************************
;                                               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 + =
减小字号Ctrl + -
显示快捷键?