feat: map text area to kernel memory space, first application_manager

implementation
This commit is contained in:
2026-03-24 18:50:20 +01:00
parent f33100d36b
commit 6798f6b56d
6 changed files with 77 additions and 14 deletions

8
.vscode/launch.json vendored
View File

@@ -3,7 +3,7 @@
"compounds": [
{
"name": "Run QEMU + Attach LLDB",
"configurations": ["Attach LLDB"],
"configurations": ["LLDB"],
"preLaunchTask": "Run QEMU"
}
],
@@ -61,9 +61,11 @@
{
"name": "LLDB",
"type": "lldb",
"request": "launch",
"request": "attach",
"program": "${workspaceFolder}/target/aarch64-unknown-none/debug/nova",
"preLaunchTask": "Run QEMU wo window"
"preLaunchTask": "Run QEMU",
"stopOnEntry": true,
"processCreateCommands": ["gdb-remote localhost:1234"]
}
]
}