Files
voidEmu/.vscode/launch.json

17 lines
596 B
JSON

{
// 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": "Debug assembler",
"type": "gdb",
"request": "launch",
"target": "./bin/assembler",
"arguments": "${workspaceRoot}/examples/syntax.asm ${workspaceRoot}/bin/test.ch8",
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText"
}
]
}