summaryrefslogtreecommitdiffhomepage
path: root/example/mb2/link.ld
diff options
context:
space:
mode:
authorMarvin Borner2021-07-07 19:13:11 +0200
committerMarvin Borner2021-07-07 19:13:11 +0200
commit9a2d5cbdc7972d1d5bfb1ea93f82f66d113faa17 (patch)
tree08ceb8427b64a08c89a5526dfbf8b66c78f9d12c /example/mb2/link.ld
parent6355c3e08c9f4d3db122252abce5837c364d5b81 (diff)
Strange implementations
Diffstat (limited to 'example/mb2/link.ld')
-rw-r--r--example/mb2/link.ld33
1 files changed, 33 insertions, 0 deletions
diff --git a/example/mb2/link.ld b/example/mb2/link.ld
new file mode 100644
index 0000000..0d79ef4
--- /dev/null
+++ b/example/mb2/link.ld
@@ -0,0 +1,33 @@
+/* MIT License, Copyright (c) 2021 Marvin Borner */
+
+OUTPUT_ARCH(i386)
+ENTRY(boot_entry)
+phys = 0x00100000;
+
+SECTIONS
+{
+ . = phys;
+
+ .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)
+ }
+
+ end = .;
+}