summaryrefslogtreecommitdiff
path: root/src/user/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/linker.ld')
-rw-r--r--src/user/linker.ld23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/user/linker.ld b/src/user/linker.ld
deleted file mode 100644
index 4925448..0000000
--- a/src/user/linker.ld
+++ /dev/null
@@ -1,23 +0,0 @@
-ENTRY(_start)
-
-SECTIONS
-{
- __executable_start = .;
- .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)
- }
-}