initial commit -- framebuffer Hello, World!

This commit is contained in:
FantasyPvP
2024-11-16 15:13:05 +00:00
commit ac4cf9a27b
16 changed files with 863 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"rust-analyzer.check.allTargets": false,
"rust-analyzer.check.extraArgs": [
"--target",
"x86_64-kernel"
],
"rust-analyzer.cargo.target": "x86_64-kernel",
"rust-analyzer.checkOnSave.allTargets": false,
"rust-analyzer.checkOnSave.extraArgs": [
"--target",
"x86_64-kernel"
],
"rust-analyzer.cargo.features": [],
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.cargo.buildScripts.enable": true,
"rust-analyzer.cargo.buildScripts.overrideCommand": null,
"rust-analyzer.server.extraEnv": {
"RUST_TARGET_PATH": "${workspaceFolder}/kernel"
}
}