diff options
| author | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2023-12-17 14:57:23 -0600 |
|---|---|---|
| committer | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2023-12-17 14:57:23 -0600 |
| commit | 42479c459305481591cdafb6d6d0e1979564f1f0 (patch) | |
| tree | a0ca4f4ea289e1068adea8e48c62bd15e6721475 /pico_ram_only.ld | |
Initial commit
Diffstat (limited to 'pico_ram_only.ld')
| -rw-r--r-- | pico_ram_only.ld | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pico_ram_only.ld b/pico_ram_only.ld new file mode 100644 index 0000000..eb2450e --- /dev/null +++ b/pico_ram_only.ld @@ -0,0 +1,13 @@ +ENTRY(main) + +MEMORY { + FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M + SRAM(rwx) : ORIGIN = 0x20000000, LENGTH = 264K +} + +SECTIONS { + .text : { + *(.text) + . = ALIGN(4); + } > SRAM +} |
