-
Install
DevKitPro
-
Install
VSCode
ExtensionC/C++
-
Install
mGBA
-
Clone template to
DevKitPro
directory -
Setup Workspace Settings
{ "clangd": "Disabled", // if install `clangd` extension "C_Cpp.intelliSenseEngine": "default", "C_Cpp.formatting": "clangFormat", "C_Cpp.default.compilerPath": ".../DevKitPro/devkitARM/bin/arm-none-eabi-gcc.exe", "C_Cpp.default.includePath": [ ".ext/*", "./ext/gba/*", "./ext/tonc/*", "./include/*", "./include/**", ], "C_Cpp.default.intelliSenseMode": "windows-gcc-arm", "files.associations": { "*.h": "c" }, }
$> cd Project
$> make -j 12
$> build/PROJECT.gba
$> make clean