aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 8c56401b86f3e0160064860e73e450785b005469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "version": "0.2.0",
    "configurations": [
       {
        "name": "(gdb) Attach to QEmu",
        "request": "attach",
        "type": "gdb",
        "executable": "${workspaceFolder}/build/Debug/bin/kernel",
        "target": "127.0.0.1:1234",
        "remote": true,
        "cwd": "${workspaceFolder}",
       }
    ]
}