Starship/.vscode/launch.json

39 lines
1.2 KiB
JSON
Raw Normal View History

2023-10-06 09:10:31 +03:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug SOTN (PCSX Redux)",
"type": "gdb",
"request": "attach",
"target": "localhost:3333",
"remote": true,
"stopAtConnect": true,
"executable": "build/sotn-debugmodule.elf",
"linux": {
"gdbpath": "/usr/bin/gdb-multiarch"
},
"cwd": "${workspaceRoot}",
"autorun": [
"set substitute-path /project .",
"file build/sotn-debugmodule.elf",
"continue",
],
"valuesFormatting": "parseText"
},
{
"name": "Debug sotn-disk (extract)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "tools/sotn-disk",
"args": [
"extract",
"../../disks/sotn.us.cue",
"../../disks/"
]
}
]
}