mii_emu/.vscode/launch.json
2023-10-31 15:59:47 -05:00

21 lines
546 B
JSON

{
// 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",
],
}
],
}