diff options
Diffstat (limited to 'src/arch/x86_64/linker.ld')
-rw-r--r-- | src/arch/x86_64/linker.ld | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/arch/x86_64/linker.ld b/src/arch/x86_64/linker.ld deleted file mode 100644 index 5d788f1..0000000 --- a/src/arch/x86_64/linker.ld +++ /dev/null @@ -1,16 +0,0 @@ -ENTRY(start) - -SECTIONS { - . = 1M; - - .boot : - { - /* ensure that the multiboot header is at the beginning */ - *(.multiboot_header) - } - - .text : - { - *(.text) - } -} |