mii_emu/.vscode/launch.json

21 lines
546 B
JSON
Raw Normal View History

2023-10-31 20:59:47 +00:00
{
// 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",
],
}
],
}