From 42479c459305481591cdafb6d6d0e1979564f1f0 Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Sun, 17 Dec 2023 14:57:23 -0600 Subject: Initial commit --- pico_ram_only.ld | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pico_ram_only.ld (limited to 'pico_ram_only.ld') 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 +} -- cgit v1.2.3