diff options
Diffstat (limited to 'assembler/pico_ram_only.ld')
-rw-r--r-- | assembler/pico_ram_only.ld | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/assembler/pico_ram_only.ld b/assembler/pico_ram_only.ld new file mode 100644 index 0000000..eb2450e --- /dev/null +++ b/assembler/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 +} |