├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── createips.py ├── doc └── screenshot.jpg └── src ├── getbatterylevel.s ├── statusbattery.s └── statusbatteryicon.s /.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | build 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/3ds-patches/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./createips.py 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/3ds-patches/HEAD/README.md -------------------------------------------------------------------------------- /createips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/3ds-patches/HEAD/createips.py -------------------------------------------------------------------------------- /doc/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/3ds-patches/HEAD/doc/screenshot.jpg -------------------------------------------------------------------------------- /src/getbatterylevel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/3ds-patches/HEAD/src/getbatterylevel.s -------------------------------------------------------------------------------- /src/statusbattery.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/3ds-patches/HEAD/src/statusbattery.s -------------------------------------------------------------------------------- /src/statusbatteryicon.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/3ds-patches/HEAD/src/statusbatteryicon.s --------------------------------------------------------------------------------