From cfe60025ab06c73c44ce6b962a258668b3a90431 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 24 Nov 2022 22:27:15 +0000 Subject: Move all files --- riscv/firmware.lds | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 riscv/firmware.lds (limited to 'riscv/firmware.lds') diff --git a/riscv/firmware.lds b/riscv/firmware.lds new file mode 100644 index 0000000..970000a --- /dev/null +++ b/riscv/firmware.lds @@ -0,0 +1,11 @@ +SECTIONS { + .memory : { + . = 0x000000; + *(.init); + *(.text); + *(*); + . = ALIGN(4); + end = .; + } +} + -- cgit