diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..567567d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + // 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": [ + { + "name": "mii emu", + "type": "cppdbg", + "preLaunchTask": "${defaultBuildTask}", + "request": "launch", + "program": "${workspaceFolder}/build-x86_64-redhat-linux/bin/mii_emu", + "cwd": "${workspaceFolder}", + "args": [ + "--default", + "--drive", "6:1:disks/dos33master.nib", + ], + } + ], +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..017836e --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,17 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Make Build", + "type": "shell", + "command": "make all", + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + } + ] +}