Files
amlogic/source/bootrom_emulator/.vscode/launch.json
Eljakim Herrewijnen 24b535bc7e started work on s922
2024-04-23 23:04:16 +02:00

24 lines
724 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": "Run Emulator",
"type": "python",
"request": "launch",
"program": "emulator.py",
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Run Fuzzer",
"type": "python",
"request": "launch",
"program": "fuzzer.py",
"console": "integratedTerminal",
"justMyCode": false,
}
]
}