const kernel = {
"type": "Hello world kernel (asm, C)",
"files": {
"kernel.c": "Kernel code",
"multiboot.S": "Bootloader",
"link.ld": "Linker script"
},
"build": [
"nasm -f elf32 multiboot.S -o kasm.o",
"gcc -m32 -c kernel.c -o kc.o",
"ld -m elf_i386 -T link.ld -o kernel kasm.o kc.o"
],
"run": "qemu-system-i386 -kernel kernel"
}
-
Notifications
You must be signed in to change notification settings - Fork 0
Ogune/HelloKernel
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Hello world kernel. ⚙️
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published