aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: e522ad56e7899194f38869ed38a038d65e3453c8 (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",
            "autorun": [
                "-enable-pretty-printing",
                "-break-insert _start"
            ]
        }
    ]
}