From c12b1b99f2e3ab731c483bc93fa21b4763624fac Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Sat, 22 Jun 2024 17:43:20 -0500 Subject: Finish hexedit machine code --- hexedit/pico_bin.ld | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hexedit/pico_bin.ld (limited to 'hexedit/pico_bin.ld') diff --git a/hexedit/pico_bin.ld b/hexedit/pico_bin.ld new file mode 100644 index 0000000..0aa7974 --- /dev/null +++ b/hexedit/pico_bin.ld @@ -0,0 +1,13 @@ +ENTRY(SETUP) + +MEMORY { + FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M + SRAM(rwx) : ORIGIN = 0x20000000, LENGTH = 264K +} + +SECTIONS { + .text : { + *(.text); + . = ALIGN(4); + } > SRAM +} -- cgit v1.2.3