WiiDuktape/.vscode/launch.json
Fries e9349f026a add grrlib.
also restructure the code so the js file has an update and start
function that gets called.
2024-06-19 21:08:16 -07:00

34 lines
1.1 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": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/source/WiiDuktape.elf",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "/opt/devkitpro/devkitPPC/bin/powerpc-eabi-gdb",
"miDebuggerServerAddress": "127.0.0.1:42069",
"debugServerPath": "${workspaceFolder}/dolphin.sh",
"debugServerArgs": "-e ${workspaceFolder}/build/source/WiiDuktape.elf --batch"
},
{
"name": "(gdb) Attach",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/source/WiiDuktape.elf",
"cwd": "${fileDirname}",
"MIMode": "gdb",
"miDebuggerPath": "/opt/devkitpro/devkitPPC/bin/powerpc-eabi-gdb",
"miDebuggerServerAddress": "127.0.0.1:42069",
},
]
}