mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-23 21:45:00 +03:00
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
|
{
|
||
|
// 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/"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|