summaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld30
1 files changed, 0 insertions, 30 deletions
diff --git a/linker.ld b/linker.ld
deleted file mode 100644
index 650ecd7..0000000
--- a/linker.ld
+++ /dev/null
@@ -1,30 +0,0 @@
-ENTRY(_start)
-
-SECTIONS
-{
- . = 1M;
- .text BLOCK(4K) : ALIGN(4K)
- {
- *(.multiboot)
- *(.text)
- }
- .rodata BLOCK(4K) : ALIGN(4K)
- {
- *(.rodata)
- }
- .data BLOCK(4K) : ALIGN(4K)
- {
- *(.data)
- }
- _data_end = .;
- .bss BLOCK(4K) : ALIGN(4K)
- {
- *(COMMON)
- *(.bss)
-
- stack_bottom = .;
- . += 16K;
- stack_top = .;
- }
- _bss_end = (. + 0xFFF) & ~0xFFF; /* aligned to 4K */
-}