feat: UART terminal (#7)

* feat: basic terminal

* feat: execute application via terminal
This commit is contained in:
Alexander Neuhäuser
2026-03-24 17:50:28 +01:00
committed by GitHub
parent 34a66ff87a
commit f33100d36b
16 changed files with 232 additions and 150 deletions

9
.vscode/launch.json vendored
View File

@@ -58,15 +58,12 @@
],
"preLaunchTask": "Run QEMU wo window"
},
{
"name": "Attach LLDB",
"name": "LLDB",
"type": "lldb",
"request": "attach",
"debugServer": 1234,
"request": "launch",
"program": "${workspaceFolder}/target/aarch64-unknown-none/debug/nova",
"stopOnEntry": true,
"processCreateCommands": ["gdb-remote localhost:1234"]
"preLaunchTask": "Run QEMU wo window"
}
]
}