updates memory map and prebuilt fw

This commit is contained in:
2025-07-30 06:39:17 +02:00
parent 9db8c39925
commit 7327ca4fb0
7 changed files with 14 additions and 14 deletions

8
.vscode/launch.json vendored
View File

@@ -8,9 +8,9 @@
"type": "gdbtarget",
"request": "attach",
"name": "Attach-to-gdbserver",
"program": "./fw/hello-world/hello",
"program": "./fw/hello-world/hello.elf",
"imageAndSymbols": {
"symbolFileName": "./fw/hello-world/hello"
"symbolFileName": "./fw/hello-world/hello.elf"
},
"target": {
"port": "10000"
@@ -29,7 +29,7 @@
"name": "Launch VP with gdbserver",
"cwd": "${workspaceRoot}",
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
"arguments": "-f fw/hello-world/hello -g 10000",
"arguments": "-f fw/hello-world/hello.elf -g 10000",
"presentation": {
"hidden": true,
"group": "FW Debug",
@@ -42,7 +42,7 @@
"name": "Launch VP",
"cwd": "${workspaceRoot}",
"program": "${workspaceFolder}/build/Debug/src/riscv-vp",
"arguments": "-v TRACEALL --isa tgc5c -f fw/hello-world/hello",
"arguments": "-v DEBUG --isa tgc5c -f fw/hello-world/hello.elf",
"openGdbConsole": true
},
],