diff cos/linker.ld @ 9:92ace1ca50a8

64 bits kernel without interrupts but with printf in C
author windel
date Sun, 13 Nov 2011 12:47:47 +0100
parents
children b1fed2171e1a
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cos/linker.ld	Sun Nov 13 12:47:47 2011 +0100
@@ -0,0 +1,27 @@
+ENTRY(loader)
+
+SECTIONS {
+  . = 0x00100000;
+
+  .text : {
+    *(.text)
+   }
+
+  .rodata ALIGN (0x1000) : {
+    
+    *(.rodata)
+  }
+
+  .data ALIGN (0x1000) : {
+    *(.data)
+  }
+
+  .bss : {
+    sbss = .;
+    *(COMMON)
+    *(.bss)
+    ebss = .;
+   }
+
+}
+