Did some more work, was crashing. Still fighting over Merlin32 bugs/oddities. I wish there was a way to have real Merlin assemble my test sources.

This commit is contained in:
Shawn Quick 2023-06-18 16:32:38 -07:00
parent c9170f9e8a
commit 87f3803225
1 changed files with 34 additions and 0 deletions

34
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,34 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/qasm",
"args": [
"/tmp/2007-labels-and-symbols.S"
],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}