summaryrefslogtreecommitdiff
path: root/src/kernel/link.ld
diff options
context:
space:
mode:
authorBenji Dial <benji3.141@gmail.com>2020-05-16 09:53:58 -0400
committerBenji Dial <benji3.141@gmail.com>2020-05-16 09:53:58 -0400
commitc0daede46df4f546639bd2d3e11dcf064d554966 (patch)
tree2042d915325dc66baf063238b8a3c685bb91d17b /src/kernel/link.ld
parentf7820301d583ae190b683bdd1371ee6f7a35ac16 (diff)
downloadportland-os-c0daede46df4f546639bd2d3e11dcf064d554966.tar.gz
starting over
Diffstat (limited to 'src/kernel/link.ld')
-rw-r--r--src/kernel/link.ld9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/kernel/link.ld b/src/kernel/link.ld
deleted file mode 100644
index d0b7f46..0000000
--- a/src/kernel/link.ld
+++ /dev/null
@@ -1,9 +0,0 @@
-ENTRY(_start)
-SECTIONS {
- . = 0x01000000;
- .mb_header : ALIGN(8) { *(.mb_header) }
- .text : ALIGN(512) { *(.text) }
- .rodata : ALIGN(512) { *(.rodata) }
- .data : ALIGN(512) { *(.data) }
- .bss : ALIGN(512) { *(.bss) }
-} \ No newline at end of file