diff options
author | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-07-15 03:50:10 -0500 |
---|---|---|
committer | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-07-15 03:50:10 -0500 |
commit | b6462786840cea2e2c3197a36234363f91e41b1a (patch) | |
tree | 7de4c5c4d54e4240fd7f2e91aad820a8651e7625 /assembler/pico_ram_only.ld | |
parent | d6ff9f5bda85206d163f02f7cc78e47968c434ce (diff) |
Improve assembler controls
Diffstat (limited to 'assembler/pico_ram_only.ld')
-rw-r--r-- | assembler/pico_ram_only.ld | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/assembler/pico_ram_only.ld b/assembler/pico_ram_only.ld deleted file mode 100644 index eb2450e..0000000 --- a/assembler/pico_ram_only.ld +++ /dev/null @@ -1,13 +0,0 @@ -ENTRY(main) - -MEMORY { - FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M - SRAM(rwx) : ORIGIN = 0x20000000, LENGTH = 264K -} - -SECTIONS { - .text : { - *(.text) - . = ALIGN(4); - } > SRAM -} |