summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorAdam T. Carpenter <Commodore@chunkybluegiant>2025-04-26 23:57:07 -0400
committerAdam T. Carpenter <Commodore@chunkybluegiant>2025-04-26 23:57:07 -0400
commit0976b24cad90547fec8a1252f7e962b13d711501 (patch)
tree853950c605e5c10d52ccd00b52bf8553c923fe3b /.vscode
downloadttt-c64-0976b24cad90547fec8a1252f7e962b13d711501.tar.xz
ttt-c64-0976b24cad90547fec8a1252f7e962b13d711501.zip
solver and prompter
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json25
-rw-r--r--.vscode/tasks.json13
2 files changed, 38 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..695296e
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,25 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "vice",
+ "request": "launch",
+ "name": "Launch Vice",
+ "preLaunchTask": "${defaultBuildTask}"
+ },
+ {
+ "type": "vice",
+ "request": "attach",
+ "name": "Attach Vice",
+ "hostname": "localhost",
+ "port": 6502,
+ "preLaunchTask": "${defaultBuildTask}"
+ },
+ {
+ "type": "6502",
+ "request": "launch",
+ "name": "Launch 6502",
+ "preLaunchTask": "${defaultBuildTask}"
+ }
+ ]
+}
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..cc11806
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,13 @@
+{
+ "tasks": [
+ {
+ "type": "vs64",
+ "action": "build",
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "label": "build project"
+ }
+ ]
+}