rp2040/example/boot2/boot2_pre.S
2025-04-13 17:29:34 +08:00

22 lines
279 B
ArmAsm

.syntax unified
.cpu cortex-m0plus
.thumb
.global boot2_pre
.section .text.boot2_pre
.type boot2_pre, %function
boot2_pre:
b boot2_copy_self
.word 0x11223344
.word 0xabcdef58
boot2_copy_self:
bl main
.size .boot2_pre, .-boot2_pre