Setting up hello_gte (should have done this earlier)

This commit is contained in:
2026-05-31 20:47:55 -04:00
parent 66981351ee
commit 1848a6b48e
5 changed files with 731 additions and 1 deletions
+24
View File
@@ -51,6 +51,30 @@
"tbreak main",
"continue"
]
},
{
"name": "Debug: Hello GTE 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_gte.elf",
"autorun": [
"monitor reset shellhalt",
"load hello_gte.elf",
"tbreak main",
"continue"
]
}
]
}