mirror of
https://github.com/Ed94/pikuma_ps1.git
synced 2026-06-01 18:41:13 -07:00
29 lines
663 B
JSON
29 lines
663 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug",
|
|
"type": "gdb",
|
|
"request": "attach",
|
|
"target": "localhost:3333",
|
|
"remote": true,
|
|
"cwd": "${workspaceRoot}",
|
|
"valuesFormatting": "parseText",
|
|
"stopAtConnect": true,
|
|
"gdbpath": "gdb-multiarch",
|
|
"windows": {
|
|
"gdbpath": "gdb-multiarch.exe"
|
|
},
|
|
"osx": {
|
|
"gdbpath": "gdb"
|
|
},
|
|
"executable": "${workspaceRoot}/${workspaceRootFolderName}.elf",
|
|
"autorun": [
|
|
"monitor reset shellhalt",
|
|
"load ${workspaceRootFolderName}.elf",
|
|
"tbreak main",
|
|
"continue"
|
|
]
|
|
}
|
|
]
|
|
} |