determining the level of granularity I have with asm symbolic debugging.

This commit is contained in:
2025-08-06 08:44:20 -04:00
parent c052253b0e
commit b9494d219f
15 changed files with 574 additions and 15 deletions
+24
View File
@@ -27,6 +27,30 @@
"tbreak main",
"continue"
]
},
{
"name": "Debug: Hello GPU Psy-Q!",
"type": "gdb",
"request": "attach",
"target": "localhost:3333",
"remote": true,
"cwd": "${workspaceRoot}/build",
"valuesFormatting": "parseText",
"stopAtConnect": true,
"gdbpath": "gdb-multiarch",
"windows": {
"gdbpath": "gdb-multiarch.exe"
},
"osx": {
"gdbpath": "gdb"
},
"executable": "${workspaceRoot}/build/hello_gpu.elf",
"autorun": [
"monitor reset shellhalt",
"load hello_gpu.elf",
"tbreak main",
"continue"
]
}
]
}