a working vmm

This commit is contained in:
Zoe
2024-08-26 23:13:48 -05:00
parent 224a9783d9
commit f93484bf81
4 changed files with 40 additions and 92 deletions

12
.vscode/launch.json vendored
View File

@@ -4,13 +4,23 @@
{
"type": "gdb",
"request": "attach",
"name": "Attach to QEMU",
"name": "Build and Attach to QEMU",
"preLaunchTask": "(Debug) Build the kernel and run qemu",
"executable": "${workspaceFolder}/target/x86_64-unknown-none/debug/CappuccinOS.elf",
"target": ":1234",
"remote": true,
"cwd": "${workspaceRoot}",
// "gdbpath": "${workspaceRoot}/target/x86_64-unknown-none/debug/CappuccinOS.elf"
},
{
"type": "gdb",
"request": "attach",
"name": "Attach to QEMU",
"executable": "${workspaceFolder}/target/x86_64-unknown-none/debug/CappuccinOS.elf",
"target": ":1234",
"remote": true,
"cwd": "${workspaceRoot}",
// "gdbpath": "${workspaceRoot}/target/x86_64-unknown-none/debug/CappuccinOS.elf"
}
]
}