...........Anm2Ed 2.0

This commit is contained in:
2025-11-13 22:20:38 -05:00
parent 7abb0fcda4
commit 9af0135a3a
4 changed files with 57 additions and 37 deletions

23
.vscode/launch.json vendored
View File

@@ -23,6 +23,29 @@
"text": "-gdb-set disassembly-flavor intel"
}
]
},
{
"name": "Release",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build-release/anm2ed",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing"
},
{
"description": "Set disassembly flavor to Intel",
"text": "-gdb-set disassembly-flavor intel"
}
]
}
]
}

11
.vscode/tasks.json vendored
View File

@@ -12,6 +12,15 @@
"problemMatcher": [
"$gcc"
]
},
{
"label": "build-release",
"type": "shell",
"command": "cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release && cmake --build build-release --target anm2ed",
"group": "build",
"problemMatcher": [
"$gcc"
]
}
]
}
}