You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
8785645a95
The port currently implements support for GPIO, RTC, ExtInt and the WiFi subsystem. A small file system is available in the serial flash. A bootloader which makes OTA updates possible, is also part of this initial implementation.
20 lines
343 B
ArmAsm
20 lines
343 B
ArmAsm
.syntax unified
|
|
.cpu cortex-m4
|
|
.thumb
|
|
.text
|
|
.align 2
|
|
|
|
@ void bootmgr_run_app(_u32 base)
|
|
.global bootmgr_run_app
|
|
.thumb
|
|
.thumb_func
|
|
.type bootmgr_run_app, %function
|
|
bootmgr_run_app:
|
|
@ set the SP
|
|
ldr sp, [r0]
|
|
add r0, r0, #4
|
|
|
|
@ jump to the entry code
|
|
ldr r1, [r0]
|
|
bx r1
|