├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── 8BitVita.yml ├── CMakeLists.txt ├── README.md ├── sce_sys ├── icon0.png ├── livearea │ └── contents │ │ ├── bg.png │ │ ├── startup.png │ │ └── template.xml └── pic0.png └── src ├── bluetooth.c ├── common.h └── debug.c /.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /8BitVita.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/8BitVita.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/README.md -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /sce_sys/pic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/sce_sys/pic0.png -------------------------------------------------------------------------------- /src/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/src/bluetooth.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/src/common.h -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ibrahim778/8BitVita/HEAD/src/debug.c --------------------------------------------------------------------------------