REDRIVER2/PSXToolchain/.vscode/launch.json

15 lines
387 B
JSON
Raw Permalink Normal View History

2021-04-28 23:03:54 +02:00
{
"version": "0.2.0",
"configurations": [
{
"type": "gdb",
"request": "attach",
"name": "Attach to gdbserver",
"executable": "0_CD_DATA/DRIVER2.ps-exe",
2021-04-29 15:27:43 +02:00
"gdbpath": "C:/mingw/bin/gdb.exe",
2021-04-28 23:03:54 +02:00
"target": "localhost:3333",
"remote": true,
"cwd": "${workspaceRoot}"
}
]
}