AmiTimeKeeper/.vscode/launch.json

24 lines
596 B
JSON

// Debug with remote gdbserver for AmigaOS:
// http://aminet.net/package/dev/debug/bgdbserver
// Start in FSUAE with:
// >bgdbserver TimeKeeper
// AmigaOS GCC & GDB:
// https://github.com/bebbo/amiga-gcc
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to gdbserver",
"type": "gdb",
"request": "attach",
"executable": "obj/TimeKeeper",
"target": "localhost:2345",
"remote": true,
"cwd": "${workspaceRoot}",
"gdbpath": "/opt/amiga/bin/m68k-amigaos-gdb",
}
]
}