trash/nice-os
Clone repo:
git clone https://git.topcheto.eu/trash/nice-os.gitFile contents
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch with GDB",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/image.bin",
"cwd": "/",
"args": [],
"targetArchitecture": "x86",
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"customLaunchSetupCommands": [
{
"text": "file ${workspaceFolder}/bin/image.obj",
"description": "Specifies the object with the debugging data"
},
{
"text": "target remote localhost:6969",
"description": "Connect to QEMU remote debugger"
}
],
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "start-vm"
}
]
}