rp2040

RP2040 Programming without SDK
Log | Files | Refs

commit 22533963504a2cde90c65e92bdadf99eb0943894
parent dd49d82ab646572957be1fe7acbf5f59f7a73fec
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Wed, 12 Apr 2023 09:39:48 +0900

modify

Diffstat:
Mmemmap.ld | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/memmap.ld b/memmap.ld @@ -10,10 +10,10 @@ SECTIONS *(.boot2) } > FLASH - .text 0x20000000 : AT (0x10000100) { + .text : AT (0x10000100) { *(.vectors) *(.text) _etext = .; - } + } > SRAM }