From f2f186c3594a922e51abf25b24052c61f833a2bf Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Tue, 4 Jun 2024 19:28:25 -0500 Subject: Rename stage 0 editor --- octedit/pico_persist.ld | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 octedit/pico_persist.ld (limited to 'octedit/pico_persist.ld') diff --git a/octedit/pico_persist.ld b/octedit/pico_persist.ld new file mode 100644 index 0000000..9c37aba --- /dev/null +++ b/octedit/pico_persist.ld @@ -0,0 +1,13 @@ +MEMORY { + FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M + SRAM(rx) : ORIGIN = 0x20041f00, LENGTH = 256 +} + +SECTIONS { + .text : { + *(.entry); + *(.text); + . = 252; + *(.stage_2_crc); + } >SRAM AT>FLASH +} -- cgit v1.2.3