dmgtris/.vscode/launch.json

19 lines
620 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",
2023-10-24 08:45:06 +00:00
"program": "${workspaceFolder}\\bin\\DMGTRIS.gbc",
2023-10-24 20:21:48 +00:00
"emuliciousPath": "K:\\TGM\\dmgtris\\tools",
2023-10-10 08:32:24 +00:00
"port": 58870,
"stopOnEntry": false,
"preLaunchTask": "buildrom"
}
]
}