We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5675692 commit d86a718Copy full SHA for d86a718
.vscode/launch.json
@@ -2,12 +2,23 @@
2
"version": "0.2.0",
3
"configurations": [
4
{
5
- "name": "Python: Current File",
6
- "type": "python",
+ "name": "Python: Min64x4 Example Test",
+ "type": "debugpy",
7
"request": "launch",
8
- "program": "${file}",
+ "program": "${workspaceFolder}/src/bespokeasm/__main__.py",
9
"console": "integratedTerminal",
10
- "justMyCode": true
+ "justMyCode": true,
11
+ "args": [
12
+ "compile",
13
+ "-c",
14
+ "${workspaceFolder}/examples/slu4-minimal-64x4/slu4-minimal-64x4.yaml",
15
+ "-n",
16
+ "-p",
17
+ "${workspaceFolder}/examples/slu4-minimal-64x4/software/primes.min64x4"
18
+ ],
19
+ "env": {
20
+ "PYTHONPATH": "${workspaceFolder}/src"
21
+ }
22
}
23
]
24
0 commit comments