rp2040

RP2040 Programming without SDK
Log | Files | Refs

commit e5f0dcfee34f861d3a26333ebe510220660c7d4b
parent 29c72bf617e7dfc6f2edf5c0cdec860119296ff4
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Tue, 11 Apr 2023 08:45:59 +0900

add 1 to the address of the entry point.
in some cases, this is done automatically.
I don't know why...

Diffstat:
Mmach.s | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mach.s b/mach.s @@ -4,7 +4,7 @@ .section .vectors, "ax" vectors: .word 0x20040000 // initial SP - .word reset // entry point + .word (reset+1) // entry point .section .sram_cpy .global reset