initial commit

This commit is contained in:
2026-06-09 23:16:25 -05:00
commit 20fd32f978
8 changed files with 439 additions and 0 deletions

45
compile_commands.json Normal file
View File

@@ -0,0 +1,45 @@
[
{
"file": "boot.s",
"arguments": [
"/home/slinky/opt/cross/bin/i686-elf-gcc",
"-m32",
"-c",
"boot.s",
"-o",
"boot.o"
],
"directory": "/home/slinky/source/RockOS",
"output": "boot.o"
},
{
"file": "prekernel.s",
"arguments": [
"/home/slinky/opt/cross/bin/i686-elf-gcc",
"-m32",
"-c",
"prekernel.s",
"-o",
"prekernel.o"
],
"directory": "/home/slinky/source/RockOS",
"output": "prekernel.o"
},
{
"file": "kmain.c",
"arguments": [
"/home/slinky/opt/cross/bin/i686-elf-gcc",
"-m32",
"-ffreestanding",
"-O2",
"-Wall",
"-Wextra",
"-c",
"kmain.c",
"-o",
"kmain.o"
],
"directory": "/home/slinky/source/RockOS",
"output": "kmain.o"
}
]