├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json └── tasks.json ├── LICENSE.txt ├── Makefile ├── README.md ├── include └── vscode_fix.h └── source └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.elf 3 | *.nds 4 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuibonobo/nds_vscode_template/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuibonobo/nds_vscode_template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuibonobo/nds_vscode_template/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuibonobo/nds_vscode_template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuibonobo/nds_vscode_template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuibonobo/nds_vscode_template/HEAD/README.md -------------------------------------------------------------------------------- /include/vscode_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuibonobo/nds_vscode_template/HEAD/include/vscode_fix.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuibonobo/nds_vscode_template/HEAD/source/main.cpp --------------------------------------------------------------------------------