incl. debug configuration for vs code

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2023-11-20 22:52:29 +01:00
parent 7c440e4523
commit 5143e55753
6 changed files with 55 additions and 5 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "emulicious-debugger",
"request": "launch",
"name": "Launch in Emulicious",
"program": "${workspaceFolder}/obj/snake.gb",
"port": 58870,
"stopOnEntry": true,
"preLaunchTask": "build"
}
]
}

View File

@@ -1,5 +1,7 @@
{
"files.associations": {
"stdint.h": "c"
"stdint.h": "c",
"splash_screen.h": "c",
"gb.h": "c"
}
}

24
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
}
]
}