{ "version": "0.2.0", "configurations": [ { "name": "(gdb) Debug", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/bin/tcpu", "windows": { "program": "${workspaceFolder}/bin/tcpu.exe" }, "args": [ "--image", "image.bin" ], "cwd": "${workspaceFolder}/bin", "preLaunchTask": "build_exec_dbg", "stopAtEntry": false, "externalConsole": false, "MIMode": "gdb", "miDebuggerPath": "gdb", "setupCommands": [ { "text": "-enable-pretty-printing", "ignoreFailures": true }, { "text": "-gdb-set disassembly-flavor intel", "ignoreFailures": true } ] } ] }