1
0
Fork 0

feat: Started om paging

This commit is contained in:
Kevin Alavik 2025-05-14 16:38:26 +02:00
parent 2bbc7dd70f
commit fc4de346a3
Signed by: cmpsb
GPG key ID: 10D1CC0526FDC6D7
9 changed files with 275 additions and 9 deletions

18
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"configurations": [
{
"name": "linux-gcc-x64",
"includePath": [
"${workspaceFolder}/**"
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "${default}",
"cppStandard": "${default}",
"intelliSenseMode": "linux-gcc-x64",
"defines": [
"LIMINE_API_REVISION=3"
]
}
],
"version": 4
}

View file

@ -4,6 +4,7 @@
"stdarg.h": "c",
"idt.h": "c",
"limine.h": "c",
"stddef.h": "c"
"stddef.h": "c",
"stdint.h": "c"
}
}