summaryrefslogtreecommitdiff
path: root/src/usertestelf.ld
diff options
context:
space:
mode:
authordzwdz2022-07-24 16:34:37 +0200
committerdzwdz2022-07-24 16:34:37 +0200
commit373afdda5759198b2d5123abb578e3c649103493 (patch)
treed47c9271ac37c20630ec387ef1d2d0e2c8409024 /src/usertestelf.ld
parent9f3fdb830f61cd8c8c1f1db9d03cba1c546c1a7e (diff)
user: put the testelf in a sensible location in the tree
Diffstat (limited to 'src/usertestelf.ld')
-rw-r--r--src/usertestelf.ld23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/usertestelf.ld b/src/usertestelf.ld
deleted file mode 100644
index fcb5fc8..0000000
--- a/src/usertestelf.ld
+++ /dev/null
@@ -1,23 +0,0 @@
-ENTRY(main)
-
-SECTIONS
-{
- _image_base = .;
- .text BLOCK(4K) : ALIGN(4K)
- {
- *(.text)
- }
- .rodata BLOCK(4K) : ALIGN(4K)
- {
- *(.rodata)
- }
- .data BLOCK(4K) : ALIGN(4K)
- {
- *(.data)
- }
- .bss BLOCK(4K) : ALIGN(4K)
- {
- *(COMMON)
- *(.bss)
- }
-}