Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/C/OperatingSystem/targets/x86_64/linker.ld
2022-09-04 20:44:07 +02:00

16 lines
107 B
Plaintext

ENTRY(start)
SECTIONS
{
. = 1M;
.boot :
{
KEEP(*(.multiboot_header))
}
.text :
{
*(.text)
}
}