diff options
Diffstat (limited to 'hexedit/pico_persist.ld')
-rw-r--r-- | hexedit/pico_persist.ld | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/hexedit/pico_persist.ld b/hexedit/pico_persist.ld deleted file mode 100644 index 9c37aba..0000000 --- a/hexedit/pico_persist.ld +++ /dev/null @@ -1,13 +0,0 @@ -MEMORY { - FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M - SRAM(rx) : ORIGIN = 0x20041f00, LENGTH = 256 -} - -SECTIONS { - .text : { - *(.entry); - *(.text); - . = 252; - *(.stage_2_crc); - } >SRAM AT>FLASH -} |