dmgtris/.vscode/launch.json

19 lines
633 B
JSON
Raw Normal View History

2023-10-10 08:32:24 +00:00
{
// 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": [
{
"type": "emulicious-debugger",
"request": "launch",
"name": "Launch in Emulicious",
"emuliciousPath": "${workspaceFolder}\\tools\\emulicious.exe",
"program": "${workspaceFolder}\\bin\\out.gb",
"port": 58870,
"stopOnEntry": false,
"preLaunchTask": "buildrom"
}
]
}