summaryrefslogtreecommitdiff
path: root/src/kernel/arch/amd64/linker.ld
diff options
context:
space:
mode:
authordzwdz2023-01-25 22:05:35 +0100
committerdzwdz2023-01-25 22:05:35 +0100
commit353647418912b5b6b94473b15bee312ddc4d64a9 (patch)
tree495eae13e6287fdb964628bf3602fcfdd937f36d /src/kernel/arch/amd64/linker.ld
parente06cf9993b5a40abcf6c1d6c77b497ff69a9fd44 (diff)
kernel: move /mem/alloc to /malloc and linker.ld to arch/amd64/
Diffstat (limited to 'src/kernel/arch/amd64/linker.ld')
-rw-r--r--src/kernel/arch/amd64/linker.ld42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/kernel/arch/amd64/linker.ld b/src/kernel/arch/amd64/linker.ld
new file mode 100644
index 0000000..a910d4e
--- /dev/null
+++ b/src/kernel/arch/amd64/linker.ld
@@ -0,0 +1,42 @@
+ENTRY(_start)
+
+SECTIONS
+{
+ . = 0;
+ .shared BLOCK(4K) : ALIGN(4K)
+ {
+ *(.multiboot)
+ *(.shared)
+ _shared_len = .;
+ }
+
+ . = 1M;
+ .text BLOCK(4K) : ALIGN(4K)
+ {
+ _kern_start = .;
+ *(.text)
+ }
+ .rodata BLOCK(4K) : ALIGN(4K)
+ {
+ *(.rodata)
+ }
+ .data BLOCK(4K) : ALIGN(4K)
+ {
+ *(.data)
+ }
+ _data_end = .;
+ .bss BLOCK(4K) : ALIGN(4K)
+ {
+ *(COMMON)
+ *(.bss)
+
+ . += 16K;
+ _isr_big_stack = .;
+
+ . += 16K;
+ _stack_top = .;
+ }
+ _bss_end = (. + 0xFFF) & ~0xFFF; /* aligned to 4K */
+ pbitmap = _bss_end;
+ pbitmap_start = _bss_end;
+}