Risq5/.vscode/launch.json

30 lines
1.3 KiB
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": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"args": ["--build",
"--load", // May be used separately ...
//"--flash", // May be used separately ...
"--revision=7.0",
"--uart-name=crossover",
//"--with-ethernet", // Not to be used together w/ etherbone! Won't TFTP ...
"--with-etherbone",
"--ip-address=192.168.1.20",
"--csr-csv=build/csr.csv", // Only this one for remotetest.py!
"--doc", // Generate documentation files for sphinx
//"--with-bios-for-none" // Provide ROM & BIOS even w/o CPU (+10 minutes!)
"--isa-extension-m" // Provide RISC-V 'M' instruction set extension
],
//"args": ["--build"],
//"pythonArgs": ["--build", "--uart-name=crossover"],
"console": "integratedTerminal"
}
]
}