summaryrefslogtreecommitdiff
path: root/src/usertestelf.ld
diff options
context:
space:
mode:
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)
- }
-}