Color customizations. Another launch config

This commit is contained in:
Empathic Qubit 2022-11-26 02:54:56 +01:00
parent b376f241bf
commit 11f5fad8aa
2 changed files with 26 additions and 2 deletions

23
.vscode/launch.json vendored
View file

@ -16,10 +16,29 @@
}, },
"debugFile": "${workspaceFolder}/build/msprite.dbg", "debugFile": "${workspaceFolder}/build/msprite.dbg",
"mapFile": "${workspaceFolder}/build/msprite.map", "mapFile": "${workspaceFolder}/build/msprite.map",
"labelFile": "${workspaceFolder}/build/msprite.lbl",
"stopOnEntry": true, "stopOnEntry": true,
"stopOnExit": true, "stopOnExit": true,
"viceArgs": [ "emulatorArgs": [
"-model",
"ntsc"
]
},
{
"type": "cc65-vice",
"request": "launch",
"name": "CC65 Vice Launch (Debug Extension)",
"program": "${workspaceFolder}/build/msprite.d64",
"build": {
"cwd": "${workspaceFolder}",
"command": "scons",
"args": []
},
"debugFile": "${workspaceFolder}/build/msprite.dbg",
"mapFile": "${workspaceFolder}/build/msprite.map",
"debugServer": 4711,
"stopOnEntry": true,
"stopOnExit": true,
"emulatorArgs": [
"-model", "-model",
"ntsc" "ntsc"
] ]

View file

@ -40,5 +40,10 @@
"c64.h": "c", "c64.h": "c",
"cstring": "c", "cstring": "c",
"6502.h": "c" "6502.h": "c"
},
"workbench.colorCustomizations": {
"activityBar.background": "#eee",
"activityBar.foreground": "#000000ff",
"activityBar.inactiveForeground": "#00000088"
} }
} }