Files
mice-3ds/.vscode/launch.json
Mahyar Koshkouei 08ec6a7adb ide: add debug config for vs code
Signed-off-by: Mahyar Koshkouei <mk@deltabeard.com>
2025-07-30 21:35:36 +01:00

20 lines
516 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug on Citra/Azahar",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/output/3ds-arm/ctrmus.elf",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"miDebuggerPath": "arm-none-eabi-gdb",
"miDebuggerArgs": "--silent",
"miDebuggerServerAddress": "localhost:24689",
"externalConsole": false,
"preLaunchTask": "Build 3DS ROM",
"targetArchitecture": "arm"
}
]
}