This commit is contained in:
nub31
2025-09-06 21:21:59 +02:00
parent 130e271461
commit 45a9023bab
12 changed files with 167 additions and 67 deletions

19
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"version": 4,
"configurations": [
{
"name": "test",
"defines": [
"DEBUG"
],
"includePath": [
"src/kernel",
"src/arch",
"src"
],
"intelliSenseMode": "linux-gcc-x64",
"compilerPath": "/usr/bin/x86_64-elf-gcc",
"cStandard": "c23"
}
]
}

15
.vscode/settings.json vendored
View File

@@ -18,6 +18,19 @@
"system_error": "c",
"std.h": "c",
"panic.h": "c",
"pmm.h": "c"
"pmm.h": "c",
"array": "cpp",
"string_view": "cpp",
"initializer_list": "cpp",
"ranges": "cpp",
"span": "cpp",
"valarray": "cpp",
"alloc.h": "c",
"arch.h": "c",
"def.h": "c",
"assert.h": "c",
"io.h": "c",
"mem.h": "c",
"string.h": "c"
}
}