aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 3b5304820592972d561ae9aa2eade72be9d4956c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(gdb) QEMU",
            "type": "gdb",
            "request": "attach",
            "remote": true,
            "target": "localhost:1234",
            "valuesFormatting": "prettyPrinters",
            "gdbpath": "x86_64-pc-elf-gdb",
            "cwd": "${workspaceFolder}",
            "preLaunchTask": "QEMU (gdb)",
            "executable": "${command:cmake.buildDirectory}/bin/${command:cmake.buildType}/_kernel.elf",
            "autorun": [
                "-enable-pretty-printing",
                "-break-insert _start"
            ]
        }
    ]
}