mirror of
https://github.com/Ed94/pikuma_ps1.git
synced 2026-06-02 02:51:14 -07:00
cc487a0e42
Just need to generalize it now and test assembly usage.
33 lines
830 B
JSON
33 lines
830 B
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: Spinning Cube",
|
|
"type": "gdb",
|
|
"request": "attach",
|
|
"target": "localhost:3333",
|
|
"remote": true,
|
|
"cwd": "${workspaceRoot}/psxdev_sample/SpinningCube/build",
|
|
"valuesFormatting": "parseText",
|
|
"stopAtConnect": true,
|
|
"gdbpath": "gdb-multiarch",
|
|
"windows": {
|
|
"gdbpath": "gdb-multiarch.exe"
|
|
},
|
|
"osx": {
|
|
"gdbpath": "gdb"
|
|
},
|
|
"executable": "${workspaceRoot}/psxdev_sample/SpinningCube/build/SpinningCube.elf",
|
|
"autorun": [
|
|
"monitor reset shellhalt",
|
|
"load SpinningCube.elf",
|
|
"tbreak main",
|
|
"continue"
|
|
]
|
|
}
|
|
]
|
|
}
|