Skip to content

Commit

Permalink
added vscode config for system debugging with an example
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkamprath committed Dec 17, 2024
1 parent 5675692 commit d86a718
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,23 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"name": "Python: Min64x4 Example Test",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"program": "${workspaceFolder}/src/bespokeasm/__main__.py",
"console": "integratedTerminal",
"justMyCode": true
"justMyCode": true,
"args": [
"compile",
"-c",
"${workspaceFolder}/examples/slu4-minimal-64x4/slu4-minimal-64x4.yaml",
"-n",
"-p",
"${workspaceFolder}/examples/slu4-minimal-64x4/software/primes.min64x4"
],
"env": {
"PYTHONPATH": "${workspaceFolder}/src"
}
}
]
}

0 comments on commit d86a718

Please sign in to comment.