diff options
author | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-07-12 23:40:38 -0500 |
---|---|---|
committer | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-07-12 23:40:38 -0500 |
commit | d6ff9f5bda85206d163f02f7cc78e47968c434ce (patch) | |
tree | af3e8a4a6c8229e28f7f7c48da06276073e63d98 /hexedit/pico_ram_only.ld | |
parent | 17d59ac15b87588de2228aa768e99b5bbca4561c (diff) |
Fix automated serial input
Diffstat (limited to 'hexedit/pico_ram_only.ld')
-rw-r--r-- | hexedit/pico_ram_only.ld | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/hexedit/pico_ram_only.ld b/hexedit/pico_ram_only.ld deleted file mode 100644 index 1185af5..0000000 --- a/hexedit/pico_ram_only.ld +++ /dev/null @@ -1,14 +0,0 @@ -ENTRY(main) - -MEMORY { - FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M - SRAM(rwx) : ORIGIN = 0x20000000, LENGTH = 264K -} - -SECTIONS { - .text : { - main.o(.text); - *(.text); - . = ALIGN(4); - } > SRAM -} |