summaryrefslogtreecommitdiff
path: root/test.ld
diff options
context:
space:
mode:
Diffstat (limited to 'test.ld')
-rw-r--r--test.ld19
1 files changed, 0 insertions, 19 deletions
diff --git a/test.ld b/test.ld
deleted file mode 100644
index f939414..0000000
--- a/test.ld
+++ /dev/null
@@ -1,19 +0,0 @@
-/* SPDX-License-Identifier: Unlicense
- */
-
-MEMORY {
- ROM(rx) : ORIGIN = 0x00000000, LENGTH = 4M
-}
-
-SECTIONS {
- . = ORIGIN(ROM);
- .text : {
- KEEP(*(.text))
- . = ALIGN(2);
- *(.text*)
- . = ALIGN(2);
- KEEP(*(.rodata))
- *(.rodata*)
- . = ALIGN(2);
- } >ROM
-}