Hello World on simulator

This commit is contained in:
2025-05-18 10:16:46 +02:00
commit b557dd62a4
10 changed files with 136 additions and 0 deletions

21
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "cargo build --target aarch64-unknown-none",
"args": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Run QEMU",
"type": "shell",
"command": "qemu-system-aarch64 -M raspi3b -cpu cortex-a72 -display none -kernel ${workspaceFolder}/target/aarch64-unknown-none/debug/nova -s -S",
"isBackground": true
}
]
}