18 lines
456 B
JSON
18 lines
456 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "gdb",
|
|
"request": "attach",
|
|
"name": "Attach to QEMU",
|
|
"executable": "${workspaceFolder}/.build/kernel/kernel",
|
|
"target": "localhost:1234",
|
|
"remote": true,
|
|
"cwd": "${workspaceRoot}",
|
|
"gdbpath": "/usr/bin/gdb",
|
|
"autorun": [
|
|
"b _start"
|
|
]
|
|
}
|
|
]
|
|
} |