From 5bbad5026cb810f61c2466d5c4bf3438ba820842 Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Sun, 26 May 2024 14:21:59 -0500 Subject: Finish hexedit and update README --- hexedit/pico_persist.ld | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hexedit/pico_persist.ld (limited to 'hexedit/pico_persist.ld') diff --git a/hexedit/pico_persist.ld b/hexedit/pico_persist.ld new file mode 100644 index 0000000..32cc42f --- /dev/null +++ b/hexedit/pico_persist.ld @@ -0,0 +1,11 @@ +MEMORY { + FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M + SRAM(rx) : ORIGIN = 0x20041f00, LENGTH = 252 +} + +SECTIONS { + .text : { + *(.entry) + *(.text) + } >SRAM AT>FLASH +} -- cgit v1.2.3