Files
amlogic/source/bootrom_emulator/.vscode/launch.json
Eljakim Herrewijnen ecfecf5a03 s922x works
2024-04-28 21:56:17 +02:00

34 lines
1.1 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": "Run Emulator",
"type": "python",
"request": "launch",
"program": "emulator.py",
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Test Fuzzer command S905X3",
"type": "python",
"request": "launch",
"program": "fuzzer.py",
"console": "integratedTerminal",
"justMyCode": false,
"args": ["--device", "S905X3", "--test"]
},
{
"name": "Test Fuzzer command S922",
"type": "python",
"request": "launch",
"program": "fuzzer.py",
"console": "integratedTerminal",
"justMyCode": false,
"args": ["--device", "S922", "--test"]
}
]
}