aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/arch/i386/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/arch/i386/linker.ld')
-rw-r--r--kernel/arch/i386/linker.ld33
1 files changed, 33 insertions, 0 deletions
diff --git a/kernel/arch/i386/linker.ld b/kernel/arch/i386/linker.ld
new file mode 100644
index 0000000..24cfa84
--- /dev/null
+++ b/kernel/arch/i386/linker.ld
@@ -0,0 +1,33 @@
+/* Excecution start point symbol */
+ENTRY(_start)
+
+SECTIONS
+{
+ . = 1M;
+
+ /* code. multiboot header comes first */
+ .text BLOCK(4K) : ALIGN(4K)
+ {
+ *(.multiboot)
+ *(.text)
+ }
+
+ /* read only data */
+ .rodata BLOCK(4K) : ALIGN(4K)
+ {
+ *(.rodata)
+ }
+
+ /* read write data (initialized) */
+ .data BLOCK(4K) : ALIGN(4K)
+ {
+ *(.data)
+ }
+
+ /* read write data (uninitialized) and stack */
+ .bss BLOCK(4K) : ALIGN(4K)
+ {
+ *(COMMON)
+ *(.bss)
+ }
+} \ No newline at end of file