Added OS-Project
This commit is contained in:
7
C/OperatingSystem/targets/x86_64/iso/boot/grub/grub.cfg
Normal file
7
C/OperatingSystem/targets/x86_64/iso/boot/grub/grub.cfg
Normal file
@@ -0,0 +1,7 @@
|
||||
set timeout=0
|
||||
set default=0
|
||||
|
||||
menuentry "my os" {
|
||||
multiboot2 /boot/kernel.bin
|
||||
boot
|
||||
}
|
||||
16
C/OperatingSystem/targets/x86_64/linker.ld
Normal file
16
C/OperatingSystem/targets/x86_64/linker.ld
Normal file
@@ -0,0 +1,16 @@
|
||||
ENTRY(start)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
. = 1M;
|
||||
|
||||
.boot :
|
||||
{
|
||||
KEEP(*(.multiboot_header))
|
||||
}
|
||||
|
||||
.text :
|
||||
{
|
||||
*(.text)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user