diff --git a/.vscode/launch.json b/.vscode/launch.json index 81045b8..4c68f9d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -16,10 +16,29 @@ }, "debugFile": "${workspaceFolder}/build/msprite.dbg", "mapFile": "${workspaceFolder}/build/msprite.map", - "labelFile": "${workspaceFolder}/build/msprite.lbl", "stopOnEntry": 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", "ntsc" ] diff --git a/.vscode/settings.json b/.vscode/settings.json index ced7acc..0659a9b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -40,5 +40,10 @@ "c64.h": "c", "cstring": "c", "6502.h": "c" + }, + "workbench.colorCustomizations": { + "activityBar.background": "#eee", + "activityBar.foreground": "#000000ff", + "activityBar.inactiveForeground": "#00000088" } } \ No newline at end of file