├── .github └── workflows │ └── no-prs.yaml ├── .gitignore ├── PAKS.md ├── README.md ├── commits.sh ├── github ├── README.md ├── generate_screenshots.sh ├── minui-clock.png ├── minui-main.png ├── minui-menu-gbc.png ├── minui-menu-md.png ├── minui-menu-options-controls.png ├── minui-menu-options-core.png ├── minui-menu-options-frontend.png ├── minui-menu-options-shortcuts.png ├── minui-menu-p8.png ├── minui-menu-ps.png ├── minui-menu-sfc.png ├── minui-menu-sgb.png └── minui-menu-vb.png ├── makefile ├── makefile.toolchain ├── skeleton ├── BASE │ ├── Bios │ │ ├── FC │ │ │ └── .keep │ │ ├── GB │ │ │ └── .keep │ │ ├── GBA │ │ │ └── .keep │ │ ├── GBC │ │ │ └── .keep │ │ ├── MD │ │ │ └── .keep │ │ ├── PS │ │ │ └── .keep │ │ └── SFC │ │ │ └── .keep │ ├── README.txt │ ├── Roms │ │ ├── Game Boy (GB) │ │ │ └── .keep │ │ ├── Game Boy Advance (GBA) │ │ │ └── .keep │ │ ├── Game Boy Color (GBC) │ │ │ └── .keep │ │ ├── Native Games (PAK) │ │ │ └── .keep │ │ ├── Nintendo Entertainment System (FC) │ │ │ └── .keep │ │ ├── Sega Genesis (MD) │ │ │ └── .keep │ │ ├── Sony PlayStation (PS) │ │ │ └── .keep │ │ └── Super Nintendo Entertainment System (SFC) │ │ │ └── .keep │ └── Saves │ │ ├── FC │ │ └── .keep │ │ ├── GB │ │ └── .keep │ │ ├── GBA │ │ └── .keep │ │ ├── GBC │ │ └── .keep │ │ ├── MD │ │ └── .keep │ │ ├── PS │ │ └── .keep │ │ └── SFC │ │ └── .keep ├── BOOT │ ├── common │ │ └── updater │ ├── magicx │ │ └── init.sh │ ├── miyoo │ │ └── app │ │ │ ├── MainUI │ │ │ ├── keymon │ │ │ ├── miyoomini.sh │ │ │ ├── my282.sh │ │ │ └── my355.sh │ └── trimui │ │ └── app │ │ ├── MainUI │ │ ├── keymon │ │ ├── main.sh │ │ └── runtrimui.sh ├── EXTRAS │ ├── Bios │ │ ├── GG │ │ │ └── .keep │ │ ├── MGBA │ │ │ └── .keep │ │ ├── NGPC │ │ │ └── .keep │ │ ├── P8 │ │ │ └── .keep │ │ ├── PCE │ │ │ └── .keep │ │ ├── PKM │ │ │ └── .keep │ │ ├── SGB │ │ │ └── .keep │ │ ├── SMS │ │ │ └── .keep │ │ └── VB │ │ │ └── .keep │ ├── Emus │ │ ├── gkdpixel │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── m17 │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── magicmini │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── miyoomini │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── my282 │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── my355 │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── rg35xx │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── rg35xxplus │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default-wide.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default-wide.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default-wide.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── rgb30 │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8-NATIVE.pak │ │ │ │ ├── launch.sh │ │ │ │ └── missing.png │ │ │ ├── P8.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── tg5040 │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default-brick.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ ├── trimuismart │ │ │ ├── GG.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── zero28 │ │ │ ├── GG.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── NGP.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── NGPC.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── P8.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── PCE.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── SGB.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── SMS.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── SUPA.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ └── VB.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ ├── README.txt │ ├── Roms │ │ ├── Game Boy Advance (MGBA) │ │ │ └── .keep │ │ ├── Neo Geo Pocket Color (NGPC) │ │ │ └── .keep │ │ ├── Pico-8 (P8) │ │ │ └── .keep │ │ ├── Pokémon mini (PKM) │ │ │ └── .keep │ │ ├── Sega Game Gear (GG) │ │ │ └── .keep │ │ ├── Sega Master System (SMS) │ │ │ └── .keep │ │ ├── Super Game Boy (SGB) │ │ │ └── .keep │ │ ├── Super Nintendo Entertainment System (SUPA) │ │ │ └── .keep │ │ ├── TurboGrafx-16 (PCE) │ │ │ └── .keep │ │ └── Virtual Boy (VB) │ │ │ └── .keep │ ├── Saves │ │ ├── GG │ │ │ └── .keep │ │ ├── MGBA │ │ │ └── .keep │ │ ├── NGPC │ │ │ └── .keep │ │ ├── P8 │ │ │ └── .keep │ │ ├── PCE │ │ │ └── .keep │ │ ├── PKM │ │ │ └── .keep │ │ ├── SGB │ │ │ └── .keep │ │ ├── SMS │ │ │ └── .keep │ │ ├── SUPA │ │ │ └── .keep │ │ └── VB │ │ │ └── .keep │ └── Tools │ │ ├── gkdpixel │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ └── Input.pak │ │ │ └── launch.sh │ │ ├── m17 │ │ ├── Bootlogo.pak │ │ │ ├── launch.sh │ │ │ ├── logo.bmp │ │ │ └── original.bmp │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ └── Input.pak │ │ │ └── launch.sh │ │ ├── magicmini │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ └── Input.pak │ │ │ └── launch.sh │ │ ├── miyoomini │ │ ├── ADBD.pak │ │ │ ├── 8188fu.ko │ │ │ ├── adbd │ │ │ ├── launch.sh │ │ │ ├── libcrypto.so.1.1 │ │ │ └── profile │ │ ├── Bootlogo.pak │ │ │ └── launch.sh │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ ├── IP.pak │ │ │ └── launch.sh │ │ ├── Input.pak │ │ │ └── launch.sh │ │ ├── Remove Loading.pak │ │ │ ├── abort.png │ │ │ ├── bin │ │ │ │ ├── mksquashfs │ │ │ │ └── unsquashfs │ │ │ ├── launch.sh │ │ │ ├── lib │ │ │ │ └── liblzma.so.5 │ │ │ └── patch.png │ │ └── Toggle 560p.pak │ │ │ └── launch.sh │ │ ├── my282 │ │ ├── Bootlogo.pak │ │ │ ├── bootlogo.bmp │ │ │ ├── launch.sh │ │ │ └── res │ │ │ │ ├── abort.png │ │ │ │ ├── missing.png │ │ │ │ ├── offset-20240401221906 │ │ │ │ ├── offset-20240426150228 │ │ │ │ ├── offset-20240516174101 │ │ │ │ ├── offset-20240713100458 │ │ │ │ ├── simplify.png │ │ │ │ └── updating.png │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ ├── Input.pak │ │ │ └── launch.sh │ │ ├── Remove Loading.pak │ │ │ ├── abort.png │ │ │ ├── launch.sh │ │ │ └── patch.png │ │ └── Reset Stick.pak │ │ │ ├── calibrate.png │ │ │ └── launch.sh │ │ ├── my355 │ │ ├── Bootlogo.pak │ │ │ ├── apply.sh │ │ │ ├── launch.sh │ │ │ ├── payload │ │ │ │ ├── logo-original.bmp │ │ │ │ └── logo.bmp │ │ │ └── res │ │ │ │ ├── extract-img.png │ │ │ │ ├── flash-img.png │ │ │ │ ├── pack-img.png │ │ │ │ ├── pack-res.png │ │ │ │ ├── prep-env.png │ │ │ │ ├── reboot.png │ │ │ │ ├── replace-logo.png │ │ │ │ ├── unpack-img.png │ │ │ │ └── unpack-res.png │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ └── Input.pak │ │ │ └── launch.sh │ │ ├── rg35xx │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ └── Input.pak │ │ │ └── launch.sh │ │ ├── rg35xxplus │ │ ├── Apply Panel Fix.pak │ │ │ ├── apply.sh │ │ │ ├── bin │ │ │ │ └── .keep │ │ │ ├── launch.sh │ │ │ └── res │ │ │ │ ├── applying.png │ │ │ │ ├── fail.png │ │ │ │ ├── mismatch.png │ │ │ │ ├── patched.png │ │ │ │ ├── preparing.png │ │ │ │ ├── rebooting.png │ │ │ │ ├── unknown.png │ │ │ │ └── verifying.png │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Enable SSH.pak │ │ │ ├── launch.sh │ │ │ ├── ssh.png │ │ │ └── wifi.png │ │ ├── Files.pak │ │ │ ├── launch.sh │ │ │ └── missing.png │ │ ├── Input.pak │ │ │ └── launch.sh │ │ └── Swap Menu.pak │ │ │ ├── apply.sh │ │ │ ├── bin │ │ │ └── .keep │ │ │ ├── launch.sh │ │ │ └── res │ │ │ ├── applying.png │ │ │ ├── fail.png │ │ │ └── preparing.png │ │ ├── rgb30 │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ ├── Input.pak │ │ │ └── launch.sh │ │ ├── Splore.pak │ │ │ ├── extracting.png │ │ │ ├── launch.sh │ │ │ ├── missing.png │ │ │ └── sdl_controllers.txt │ │ └── Wi-Fi.pak │ │ │ ├── launch.sh │ │ │ ├── res │ │ │ ├── disable.png │ │ │ ├── enable.png │ │ │ └── update.png │ │ │ └── wifi.txt │ │ ├── tg5040 │ │ ├── Bootlogo.pak │ │ │ ├── bootlogo.bmp │ │ │ ├── brick │ │ │ │ ├── bootlogo.bmp │ │ │ │ └── original.bmp │ │ │ ├── launch.sh │ │ │ └── original.bmp │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ ├── Input.pak │ │ │ └── launch.sh │ │ └── Remove Loading.pak │ │ │ ├── brick │ │ │ └── done.png │ │ │ ├── done.png │ │ │ └── launch.sh │ │ ├── trimuismart │ │ ├── Bootlogo.pak │ │ │ └── launch.sh │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ └── Input.pak │ │ │ └── launch.sh │ │ └── zero28 │ │ ├── Bootlogo.pak │ │ ├── bootlogo.bmp │ │ └── launch.sh │ │ ├── Clock.pak │ │ └── launch.sh │ │ ├── Files.pak │ │ └── launch.sh │ │ └── Input.pak │ │ └── launch.sh └── SYSTEM │ ├── gkdpixel │ ├── bin │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── .keep │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── m17 │ ├── bin │ │ ├── shutdown │ │ └── start_adbd.sh │ ├── cores │ │ └── .keep │ ├── dat │ │ └── .keep │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── magicmini │ ├── bin │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── .keep │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── miyoomini │ ├── bin │ │ ├── needs-swap │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── image1.jpg │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── my282 │ ├── bin │ │ ├── setterm │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── .keep │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── my355 │ ├── bin │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── .keep │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── res │ ├── BPreplayBold-unhinted.otf │ ├── assets@1x.png │ ├── assets@2x.png │ ├── assets@3x.png │ ├── assets@4x.png │ ├── charging-640-480.png │ ├── grid-11.png │ ├── grid-2.png │ ├── grid-3.png │ ├── grid-4.png │ ├── grid-5.png │ ├── grid-6.png │ ├── grid-8.png │ ├── line-2.png │ ├── line-3.png │ ├── line-4.png │ ├── line-5.png │ ├── line-6.png │ └── line-8.png │ ├── rg35xx │ ├── bin │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── .keep │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── rg35xxplus │ ├── bin │ │ ├── hdmimon.sh │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── .keep │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default-wide.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default-cube.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── rgb30 │ ├── bin │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── .keep │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── tg5040 │ ├── bin │ │ ├── .keep │ │ ├── setterm │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── .keep │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default-brick.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default-brick.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default-brick.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ ├── system-brick.cfg │ └── system.cfg │ ├── trimuismart │ ├── bin │ │ ├── leds_off │ │ ├── leds_on │ │ └── shutdown │ ├── cores │ │ └── .keep │ ├── dat │ │ └── logo.bmp │ ├── lib │ │ └── .keep │ ├── paks │ │ ├── Emus │ │ │ ├── FC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GB.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBA.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── GBC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── MD.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ ├── PAK.pak │ │ │ │ └── launch.sh │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ └── zero28 │ ├── bin │ ├── setterm │ └── shutdown │ ├── cores │ └── .keep │ ├── dat │ └── .keep │ ├── lib │ └── .keep │ ├── paks │ ├── Emus │ │ ├── FC.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ ├── GB.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ ├── GBA.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ ├── GBC.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ ├── MD.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ ├── PAK.pak │ │ │ └── launch.sh │ │ ├── PS.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ └── SFC.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ └── MinUI.pak │ │ └── launch.sh │ └── system.cfg ├── todo.txt └── workspace ├── all ├── clock │ ├── clock.c │ └── makefile ├── common │ ├── api.c │ ├── api.h │ ├── defines.h │ ├── scaler.c │ ├── scaler.h │ ├── sdl.h │ ├── utils.c │ └── utils.h ├── cores │ ├── makefile │ └── patches │ │ ├── gambatte │ │ └── 001-export-dmg-grid-color-on-change.patch │ │ └── pokemini │ │ └── 0001-fix-resume-audio.patch ├── minarch │ ├── makefile │ └── minarch.c ├── minput │ ├── makefile │ └── minput.c ├── minui │ ├── makefile │ └── minui.c ├── readmes │ └── makefile ├── say │ ├── makefile │ └── say.c └── syncsettings │ ├── makefile │ └── syncsettings.c ├── gkdpixel ├── boot │ ├── boot.sh │ ├── install.sh │ ├── installing.bmp │ └── updating.bmp ├── cores │ ├── makefile │ └── patches │ │ └── pcsx_rearmed.patch ├── input │ ├── input.c │ ├── input.txt │ └── makefile ├── install │ └── install.sh ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── makefile ├── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h └── test │ ├── main.c │ └── makefile ├── m17 ├── boot │ ├── boot.sh │ ├── build.sh │ ├── installing.bmp │ ├── notes.txt │ └── updating.bmp ├── cores │ ├── makefile │ └── patches │ │ ├── fake-08.patch │ │ ├── fceumm.patch │ │ ├── gambatte.patch │ │ ├── gpsp.patch │ │ ├── mednafen_pce_fast.patch │ │ ├── mednafen_supafaust.patch │ │ ├── mednafen_vb.patch │ │ ├── mgba.patch │ │ ├── pcsx_rearmed.patch │ │ ├── picodrive.patch │ │ ├── pokemini.patch │ │ ├── race.patch │ │ └── snes9x2005_plus.patch ├── install │ └── install.sh ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── makefile └── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h ├── macos ├── notes.txt └── platform │ ├── makefile.copy │ ├── makefile.env │ ├── msettings.h │ ├── platform.c │ └── platform.h ├── magicmini ├── cores │ ├── makefile │ └── patches │ │ ├── fake-08.patch │ │ ├── fceumm.patch │ │ ├── gambatte.patch │ │ ├── gpsp.patch │ │ ├── mednafen_pce_fast.patch │ │ ├── mednafen_supafaust.patch │ │ ├── mednafen_vb.patch │ │ ├── mgba.patch │ │ ├── pcsx_rearmed.patch │ │ ├── picodrive.patch │ │ ├── pokemini.patch │ │ ├── race.patch │ │ └── snes9x2005_plus.patch ├── install │ ├── boot.sh │ ├── installing.bmp │ ├── notes.txt │ ├── update.sh │ └── updating.bmp ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── makefile └── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h ├── makefile ├── miyoomini ├── batmon │ ├── batmon.c │ └── makefile ├── blank │ ├── blank.c │ └── makefile ├── cores │ ├── makefile │ └── patches │ │ ├── fake-08.patch │ │ ├── fceumm.patch │ │ ├── gambatte.patch │ │ ├── gpsp.patch │ │ ├── mednafen_pce_fast.patch │ │ ├── mednafen_supafaust.patch │ │ ├── mednafen_vb.patch │ │ ├── mgba.patch │ │ ├── pcsx_rearmed.patch │ │ ├── picodrive.patch │ │ ├── pokemini.patch │ │ ├── race.patch │ │ └── snes9x2005_plus.patch ├── install │ ├── boot.sh │ ├── installing.png │ ├── update.sh │ └── updating.png ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── lumon │ ├── lumon.c │ └── makefile ├── makefile ├── other │ ├── .keep │ ├── latency_reduction │ │ ├── Makefile │ │ ├── audioserver.mod │ │ ├── credits.txt │ │ └── main.c │ ├── logotweak │ │ ├── credits.txt │ │ ├── logomake.c │ │ ├── logoread.c │ │ ├── logowrite.c │ │ └── makefile │ └── screenshot │ │ ├── Makefile │ │ ├── credits.txt │ │ └── main.c ├── overclock │ ├── credits.txt │ ├── makefile │ └── overclock.c ├── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h └── show │ ├── makefile │ └── show.c ├── my282 ├── cores │ └── makefile ├── install │ ├── boot.sh │ ├── installing.png │ ├── update.sh │ └── updating.png ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── libmstick │ ├── makefile │ ├── mstick.c │ └── mstick.h ├── makefile ├── other │ └── squashfs │ │ └── makefile ├── overclock │ ├── credits.txt │ ├── makefile │ └── overclock.c ├── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h ├── show │ ├── makefile │ └── show.c └── tests │ ├── brightness │ ├── brightness.c │ └── makefile │ ├── calibrate │ ├── calibrate.c │ └── makefile │ └── volume │ ├── makefile │ └── volume.c ├── my355 ├── cores │ ├── makefile │ └── patches │ │ ├── fake-08.patch │ │ ├── fceumm.patch │ │ ├── gambatte.patch │ │ ├── gpsp.patch │ │ ├── mednafen_pce_fast.patch │ │ ├── mednafen_supafaust.patch │ │ ├── mednafen_vb.patch │ │ ├── mgba.patch │ │ ├── pcsx_rearmed.patch │ │ ├── picodrive.patch │ │ ├── pokemini.patch │ │ ├── race.patch │ │ └── snes9x2005_plus.patch ├── init │ ├── init.sh │ ├── payload │ │ └── runmiyoo.sh │ └── res │ │ ├── extract-root.png │ │ ├── flash-root.png │ │ ├── inject-hook.png │ │ ├── pack-root.png │ │ ├── prep-env.png │ │ ├── reboot.png │ │ └── unpack-root.png ├── install │ ├── boot.sh │ ├── installing.png │ ├── update.sh │ └── updating.png ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── makefile ├── other │ └── squashfs │ │ └── makefile ├── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h └── show │ ├── makefile │ └── show.c ├── rg35xx ├── boot │ ├── boot.sh │ ├── boot_logo.png │ ├── build.sh │ ├── installing.bmp │ ├── output │ │ ├── data │ │ ├── dmenu.bin │ │ ├── installing │ │ └── updating │ └── updating.bmp ├── cores │ ├── makefile │ └── patches │ │ ├── fake-08.patch │ │ ├── fceumm.patch │ │ ├── gambatte.patch │ │ ├── gpsp.patch │ │ ├── mednafen_pce_fast.patch │ │ ├── mednafen_supafaust.patch │ │ ├── mednafen_vb.patch │ │ ├── mgba.patch │ │ ├── pcsx_rearmed.patch │ │ ├── picodrive.patch │ │ ├── pokemini.patch │ │ ├── race.patch │ │ └── snes9x2005_plus.patch ├── install │ └── install.sh ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── makefile ├── other │ └── .keep ├── overclock │ ├── credits.txt │ ├── makefile │ └── overclock.c ├── platform │ ├── de_atm7059.h │ ├── ion-owl.h │ ├── ion.h │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h └── ramdisk │ ├── charging.png │ ├── patched-ramdisk.img │ ├── patched-ramdisk.meta │ └── readme.txt ├── rg35xxplus ├── boot │ ├── boot.sh │ ├── bootlogo-r.bmp │ ├── bootlogo-s.bmp │ ├── bootlogo-w.bmp │ ├── bootlogo.bmp │ ├── build.sh │ ├── installing-r.bmp │ ├── installing-s.bmp │ ├── installing-w.bmp │ ├── installing.bmp │ ├── updating-r.bmp │ ├── updating-s.bmp │ ├── updating-w.bmp │ └── updating.bmp ├── cores │ └── makefile ├── init │ ├── init.c │ └── makefile ├── install │ └── install.sh ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── makefile ├── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h └── show │ ├── makefile │ └── show.c ├── rgb30 ├── cores │ ├── makefile │ └── patches │ │ ├── fake-08.patch │ │ ├── fceumm.patch │ │ ├── gambatte.patch │ │ ├── gpsp.patch │ │ ├── mednafen_pce_fast.patch │ │ ├── mednafen_supafaust.patch │ │ ├── mednafen_vb.patch │ │ ├── mgba.patch │ │ ├── pcsx_rearmed.patch │ │ ├── picodrive.patch │ │ ├── pokemini.patch │ │ ├── race.patch │ │ └── snes9x2005_plus.patch ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── makefile ├── other │ └── .keep ├── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h └── show │ ├── makefile │ └── show.c ├── tg5040 ├── cores │ ├── makefile │ └── patches │ │ ├── fake-08.patch │ │ ├── fceumm.patch │ │ ├── gambatte.patch │ │ ├── gpsp.patch │ │ ├── mednafen_pce_fast.patch │ │ ├── mednafen_supafaust.patch │ │ ├── mednafen_vb.patch │ │ ├── mgba.patch │ │ ├── pcsx_rearmed.patch │ │ ├── picodrive.patch │ │ ├── pokemini.patch │ │ ├── race.patch │ │ └── snes9x2005_plus.patch ├── install │ ├── boot.sh │ ├── brick │ │ ├── installing.png │ │ └── updating.png │ ├── installing.png │ ├── update.sh │ └── updating.png ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── makefile ├── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h └── show │ ├── makefile │ └── show.c ├── trimuismart ├── cores │ ├── makefile │ └── patches │ │ ├── fake-08.patch │ │ ├── fceumm.patch │ │ ├── gambatte.patch │ │ ├── gpsp.patch │ │ ├── mednafen_pce_fast.patch │ │ ├── mednafen_supafaust.patch │ │ ├── mednafen_vb.patch │ │ ├── mgba.patch │ │ ├── pcsx_rearmed.patch │ │ ├── picodrive.patch │ │ ├── pokemini.patch │ │ ├── race.patch │ │ └── snes9x2005_plus.patch ├── install │ ├── boot.sh │ ├── installing.png │ └── updating.png ├── keymon │ ├── credits.txt │ ├── keymon.c │ └── makefile ├── libmsettings │ ├── makefile │ ├── msettings.c │ ├── msettings.h │ └── sunxi_display2.h ├── makefile ├── other │ └── .keep ├── platform │ ├── ion.h │ ├── ion_sunxi.h │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ ├── platform.h │ └── sunxi_display2.h └── show │ ├── makefile │ └── show.c └── zero28 ├── bl ├── bl_disable.c ├── bl_enable.c └── makefile ├── cores └── makefile ├── install ├── boot.sh ├── installing.png ├── update.sh └── updating.png ├── keymon ├── credits.txt ├── keymon.c └── makefile ├── libmsettings ├── makefile ├── msettings.c └── msettings.h ├── makefile ├── platform ├── makefile.copy ├── makefile.env ├── platform.c └── platform.h └── show ├── makefile └── show.c /.github/workflows/no-prs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/.github/workflows/no-prs.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/.gitignore -------------------------------------------------------------------------------- /PAKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/PAKS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/README.md -------------------------------------------------------------------------------- /commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/commits.sh -------------------------------------------------------------------------------- /github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/README.md -------------------------------------------------------------------------------- /github/generate_screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/generate_screenshots.sh -------------------------------------------------------------------------------- /github/minui-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-clock.png -------------------------------------------------------------------------------- /github/minui-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-main.png -------------------------------------------------------------------------------- /github/minui-menu-gbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-gbc.png -------------------------------------------------------------------------------- /github/minui-menu-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-md.png -------------------------------------------------------------------------------- /github/minui-menu-options-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-options-controls.png -------------------------------------------------------------------------------- /github/minui-menu-options-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-options-core.png -------------------------------------------------------------------------------- /github/minui-menu-options-frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-options-frontend.png -------------------------------------------------------------------------------- /github/minui-menu-options-shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-options-shortcuts.png -------------------------------------------------------------------------------- /github/minui-menu-p8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-p8.png -------------------------------------------------------------------------------- /github/minui-menu-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-ps.png -------------------------------------------------------------------------------- /github/minui-menu-sfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-sfc.png -------------------------------------------------------------------------------- /github/minui-menu-sgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-sgb.png -------------------------------------------------------------------------------- /github/minui-menu-vb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/github/minui-menu-vb.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/makefile -------------------------------------------------------------------------------- /makefile.toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/makefile.toolchain -------------------------------------------------------------------------------- /skeleton/BASE/Bios/FC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Bios/GB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Bios/GBA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Bios/GBC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Bios/MD/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Bios/PS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Bios/SFC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BASE/README.txt -------------------------------------------------------------------------------- /skeleton/BASE/Roms/Game Boy (GB)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Roms/Game Boy Advance (GBA)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Roms/Game Boy Color (GBC)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Roms/Native Games (PAK)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Roms/Nintendo Entertainment System (FC)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Roms/Sega Genesis (MD)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Roms/Sony PlayStation (PS)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Roms/Super Nintendo Entertainment System (SFC)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Saves/FC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Saves/GB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Saves/GBA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Saves/GBC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Saves/MD/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Saves/PS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Saves/SFC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BOOT/common/updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BOOT/common/updater -------------------------------------------------------------------------------- /skeleton/BOOT/magicx/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BOOT/magicx/init.sh -------------------------------------------------------------------------------- /skeleton/BOOT/miyoo/app/MainUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BOOT/miyoo/app/MainUI -------------------------------------------------------------------------------- /skeleton/BOOT/miyoo/app/keymon: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /skeleton/BOOT/miyoo/app/miyoomini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BOOT/miyoo/app/miyoomini.sh -------------------------------------------------------------------------------- /skeleton/BOOT/miyoo/app/my282.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BOOT/miyoo/app/my282.sh -------------------------------------------------------------------------------- /skeleton/BOOT/miyoo/app/my355.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BOOT/miyoo/app/my355.sh -------------------------------------------------------------------------------- /skeleton/BOOT/trimui/app/MainUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BOOT/trimui/app/MainUI -------------------------------------------------------------------------------- /skeleton/BOOT/trimui/app/keymon: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /skeleton/BOOT/trimui/app/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BOOT/trimui/app/main.sh -------------------------------------------------------------------------------- /skeleton/BOOT/trimui/app/runtrimui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/BOOT/trimui/app/runtrimui.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/GG/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/MGBA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/NGPC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/P8/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/PCE/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/PKM/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/SGB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/SMS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/VB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/MGBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/MGBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/NGPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/NGPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/gkdpixel/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/gkdpixel/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/MGBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/MGBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/NGPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/NGPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/P8.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/P8.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/SUPA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/SUPA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/SUPA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/SUPA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/VB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/VB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/m17/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/m17/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/P8.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/P8.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/SUPA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/SUPA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/VB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/VB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/magicmini/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/magicmini/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/miyoomini/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/miyoomini/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/MGBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/MGBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/NGPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/NGPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/P8.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/P8.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/SUPA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/SUPA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/SUPA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/SUPA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/VB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/VB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my282/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my282/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/MGBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/MGBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/NGPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/NGPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/P8.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/P8.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/SUPA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/SUPA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/SUPA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/SUPA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/VB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/VB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/my355/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/my355/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/MGBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/MGBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/NGPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/NGPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/P8.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/P8.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/SUPA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/SUPA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/SUPA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/SUPA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/VB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/VB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xx/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xx/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xxplus/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xxplus/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xxplus/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xxplus/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rg35xxplus/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rg35xxplus/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/MGBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/MGBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/NGPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/NGPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/P8.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/P8.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/SUPA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/SUPA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/SUPA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/SUPA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/VB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/VB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/rgb30/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/rgb30/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/MGBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/MGBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/NGPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/NGPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/P8.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/P8.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SUPA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SUPA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SUPA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SUPA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/VB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/VB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/tg5040/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/MGBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/MGBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/NGPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/NGPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/P8.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/P8.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/SUPA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/SUPA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/SUPA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/SUPA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/VB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/VB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/zero28/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Emus/zero28/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/README.txt -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Game Boy Advance (MGBA)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Neo Geo Pocket Color (NGPC)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Pico-8 (P8)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Pokémon mini (PKM)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Sega Game Gear (GG)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Sega Master System (SMS)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Super Game Boy (SGB)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Super Nintendo Entertainment System (SUPA)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/TurboGrafx-16 (PCE)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Virtual Boy (VB)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/GG/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/MGBA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/NGPC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/P8/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/PCE/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/PKM/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/SGB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/SMS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/SUPA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/VB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/gkdpixel/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/gkdpixel/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/m17/Bootlogo.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Tools/m17/Bootlogo.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/m17/Bootlogo.pak/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Tools/m17/Bootlogo.pak/logo.bmp -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/m17/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/m17/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/magicmini/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/magicmini/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd "$(dirname "$0")" 4 | ./351Files -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/magicmini/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/miyoomini/ADBD.pak/adbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Tools/miyoomini/ADBD.pak/adbd -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/miyoomini/ADBD.pak/profile: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/miyoomini/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/miyoomini/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/miyoomini/IP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Tools/miyoomini/IP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/miyoomini/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my282/Bootlogo.pak/res/offset-20240401221906: -------------------------------------------------------------------------------- 1 | 419664 -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my282/Bootlogo.pak/res/offset-20240426150228: -------------------------------------------------------------------------------- 1 | 419664 -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my282/Bootlogo.pak/res/offset-20240516174101: -------------------------------------------------------------------------------- 1 | 419616 -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my282/Bootlogo.pak/res/offset-20240713100458: -------------------------------------------------------------------------------- 1 | 419616 -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my282/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my282/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my282/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my355/Bootlogo.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./apply.sh > ./log.txt 2>&1 -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my355/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my355/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/my355/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rg35xx/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rg35xx/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rg35xx/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rg35xxplus/Apply Panel Fix.pak/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rg35xxplus/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rg35xxplus/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rg35xxplus/Swap Menu.pak/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rgb30/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rgb30/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rgb30/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rgb30/Splore.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Tools/rgb30/Splore.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rgb30/Wi-Fi.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/EXTRAS/Tools/rgb30/Wi-Fi.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/rgb30/Wi-Fi.pak/wifi.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf # &> ./log.txt 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/trimuismart/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/trimuismart/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/trimuismart/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/zero28/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf # &> ./log.txt 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/zero28/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/zero28/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/gkdpixel/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/gkdpixel/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/gkdpixel/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/gkdpixel/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/gkdpixel/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/gkdpixel/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/gkdpixel/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/gkdpixel/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/bin/start_adbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/bin/start_adbd.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/FC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/FC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/FC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/FC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/GB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/GB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/GB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/GB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/GBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/GBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/GBC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/GBC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/MD.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/MD.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/MD.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/MD.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/PS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/PS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/PS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/PS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/Emus/SFC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/Emus/SFC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/paks/MinUI.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/paks/MinUI.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/m17/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/m17/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/magicmini/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/magicmini/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/magicmini/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/magicmini/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/magicmini/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/magicmini/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/magicmini/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/magicmini/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/miyoomini/bin/needs-swap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/miyoomini/bin/needs-swap -------------------------------------------------------------------------------- /skeleton/SYSTEM/miyoomini/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/miyoomini/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/miyoomini/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/miyoomini/dat/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/miyoomini/dat/image1.jpg -------------------------------------------------------------------------------- /skeleton/SYSTEM/miyoomini/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/miyoomini/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/miyoomini/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/miyoomini/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/bin/setterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my282/bin/setterm -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my282/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/paks/Emus/FC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my282/paks/Emus/FC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/paks/Emus/GB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my282/paks/Emus/GB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/paks/Emus/MD.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my282/paks/Emus/MD.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/paks/Emus/PS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my282/paks/Emus/PS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/paks/MinUI.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my282/paks/MinUI.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my282/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my282/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my355/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/paks/Emus/FC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my355/paks/Emus/FC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/paks/Emus/GB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my355/paks/Emus/GB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/paks/Emus/MD.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my355/paks/Emus/MD.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/paks/Emus/PS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my355/paks/Emus/PS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/paks/MinUI.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my355/paks/MinUI.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/my355/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/my355/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/BPreplayBold-unhinted.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/BPreplayBold-unhinted.otf -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/assets@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/assets@1x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/assets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/assets@2x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/assets@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/assets@3x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/assets@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/assets@4x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/charging-640-480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/charging-640-480.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/grid-11.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/grid-2.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/grid-3.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/grid-4.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/grid-5.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/grid-6.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/grid-8.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/line-2.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/line-3.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/line-4.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/line-5.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/line-6.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/res/line-8.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xx/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rg35xx/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xx/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xx/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xx/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xx/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xx/paks/MinUI.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rg35xx/paks/MinUI.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xx/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rg35xx/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xxplus/bin/hdmimon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rg35xxplus/bin/hdmimon.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xxplus/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rg35xxplus/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xxplus/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xxplus/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xxplus/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xxplus/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rg35xxplus/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rg35xxplus/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rgb30/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/paks/Emus/FC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rgb30/paks/Emus/FC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/paks/Emus/GB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rgb30/paks/Emus/GB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/paks/Emus/MD.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rgb30/paks/Emus/MD.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/paks/Emus/PS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rgb30/paks/Emus/PS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/paks/MinUI.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rgb30/paks/MinUI.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/rgb30/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/rgb30/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/bin/setterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/tg5040/bin/setterm -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/tg5040/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/MinUI.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/tg5040/paks/MinUI.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/system-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/tg5040/system-brick.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/tg5040/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/trimuismart/bin/leds_off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/trimuismart/bin/leds_off -------------------------------------------------------------------------------- /skeleton/SYSTEM/trimuismart/bin/leds_on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/trimuismart/bin/leds_on -------------------------------------------------------------------------------- /skeleton/SYSTEM/trimuismart/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/trimuismart/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/trimuismart/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/trimuismart/dat/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/trimuismart/dat/logo.bmp -------------------------------------------------------------------------------- /skeleton/SYSTEM/trimuismart/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/trimuismart/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/trimuismart/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/trimuismart/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/zero28/bin/setterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/zero28/bin/setterm -------------------------------------------------------------------------------- /skeleton/SYSTEM/zero28/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/zero28/bin/shutdown -------------------------------------------------------------------------------- /skeleton/SYSTEM/zero28/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/zero28/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/zero28/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/zero28/paks/Emus/PAK.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/zero28/paks/MinUI.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/zero28/paks/MinUI.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/zero28/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/skeleton/SYSTEM/zero28/system.cfg -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/todo.txt -------------------------------------------------------------------------------- /workspace/all/clock/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/clock/clock.c -------------------------------------------------------------------------------- /workspace/all/clock/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/clock/makefile -------------------------------------------------------------------------------- /workspace/all/common/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/common/api.c -------------------------------------------------------------------------------- /workspace/all/common/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/common/api.h -------------------------------------------------------------------------------- /workspace/all/common/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/common/defines.h -------------------------------------------------------------------------------- /workspace/all/common/scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/common/scaler.c -------------------------------------------------------------------------------- /workspace/all/common/scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/common/scaler.h -------------------------------------------------------------------------------- /workspace/all/common/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/common/sdl.h -------------------------------------------------------------------------------- /workspace/all/common/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/common/utils.c -------------------------------------------------------------------------------- /workspace/all/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/common/utils.h -------------------------------------------------------------------------------- /workspace/all/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/cores/makefile -------------------------------------------------------------------------------- /workspace/all/minarch/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/minarch/makefile -------------------------------------------------------------------------------- /workspace/all/minarch/minarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/minarch/minarch.c -------------------------------------------------------------------------------- /workspace/all/minput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/minput/makefile -------------------------------------------------------------------------------- /workspace/all/minput/minput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/minput/minput.c -------------------------------------------------------------------------------- /workspace/all/minui/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/minui/makefile -------------------------------------------------------------------------------- /workspace/all/minui/minui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/minui/minui.c -------------------------------------------------------------------------------- /workspace/all/readmes/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/readmes/makefile -------------------------------------------------------------------------------- /workspace/all/say/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/say/makefile -------------------------------------------------------------------------------- /workspace/all/say/say.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/say/say.c -------------------------------------------------------------------------------- /workspace/all/syncsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/syncsettings/makefile -------------------------------------------------------------------------------- /workspace/all/syncsettings/syncsettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/all/syncsettings/syncsettings.c -------------------------------------------------------------------------------- /workspace/gkdpixel/boot/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/boot/boot.sh -------------------------------------------------------------------------------- /workspace/gkdpixel/boot/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/boot/install.sh -------------------------------------------------------------------------------- /workspace/gkdpixel/boot/installing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/boot/installing.bmp -------------------------------------------------------------------------------- /workspace/gkdpixel/boot/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/boot/updating.bmp -------------------------------------------------------------------------------- /workspace/gkdpixel/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/cores/makefile -------------------------------------------------------------------------------- /workspace/gkdpixel/input/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/input/input.c -------------------------------------------------------------------------------- /workspace/gkdpixel/input/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/input/input.txt -------------------------------------------------------------------------------- /workspace/gkdpixel/input/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/input/makefile -------------------------------------------------------------------------------- /workspace/gkdpixel/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/install/install.sh -------------------------------------------------------------------------------- /workspace/gkdpixel/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/gkdpixel/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/gkdpixel/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/keymon/makefile -------------------------------------------------------------------------------- /workspace/gkdpixel/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/gkdpixel/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/gkdpixel/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/gkdpixel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/makefile -------------------------------------------------------------------------------- /workspace/gkdpixel/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/gkdpixel/platform/makefile.env: -------------------------------------------------------------------------------- 1 | # gkdpixel 2 | ARCH = -std=gnu99 3 | LIBS = -flto 4 | -------------------------------------------------------------------------------- /workspace/gkdpixel/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/platform/platform.c -------------------------------------------------------------------------------- /workspace/gkdpixel/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/platform/platform.h -------------------------------------------------------------------------------- /workspace/gkdpixel/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/test/main.c -------------------------------------------------------------------------------- /workspace/gkdpixel/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/gkdpixel/test/makefile -------------------------------------------------------------------------------- /workspace/m17/boot/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/boot/boot.sh -------------------------------------------------------------------------------- /workspace/m17/boot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/boot/build.sh -------------------------------------------------------------------------------- /workspace/m17/boot/installing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/boot/installing.bmp -------------------------------------------------------------------------------- /workspace/m17/boot/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/boot/notes.txt -------------------------------------------------------------------------------- /workspace/m17/boot/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/boot/updating.bmp -------------------------------------------------------------------------------- /workspace/m17/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/makefile -------------------------------------------------------------------------------- /workspace/m17/cores/patches/fake-08.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/fake-08.patch -------------------------------------------------------------------------------- /workspace/m17/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/m17/cores/patches/gambatte.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/gambatte.patch -------------------------------------------------------------------------------- /workspace/m17/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/m17/cores/patches/mednafen_vb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/mednafen_vb.patch -------------------------------------------------------------------------------- /workspace/m17/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/m17/cores/patches/pcsx_rearmed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/pcsx_rearmed.patch -------------------------------------------------------------------------------- /workspace/m17/cores/patches/picodrive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/picodrive.patch -------------------------------------------------------------------------------- /workspace/m17/cores/patches/pokemini.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/pokemini.patch -------------------------------------------------------------------------------- /workspace/m17/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/m17/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/install/install.sh -------------------------------------------------------------------------------- /workspace/m17/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/m17/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/m17/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/keymon/makefile -------------------------------------------------------------------------------- /workspace/m17/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/m17/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/m17/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/m17/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/makefile -------------------------------------------------------------------------------- /workspace/m17/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/m17/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/platform/makefile.env -------------------------------------------------------------------------------- /workspace/m17/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/platform/platform.c -------------------------------------------------------------------------------- /workspace/m17/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/m17/platform/platform.h -------------------------------------------------------------------------------- /workspace/macos/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/macos/notes.txt -------------------------------------------------------------------------------- /workspace/macos/platform/makefile.copy: -------------------------------------------------------------------------------- 1 | $(PLATFORM): 2 | # $@ 3 | -------------------------------------------------------------------------------- /workspace/macos/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/macos/platform/makefile.env -------------------------------------------------------------------------------- /workspace/macos/platform/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/macos/platform/msettings.h -------------------------------------------------------------------------------- /workspace/macos/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/macos/platform/platform.c -------------------------------------------------------------------------------- /workspace/macos/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/macos/platform/platform.h -------------------------------------------------------------------------------- /workspace/magicmini/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/cores/makefile -------------------------------------------------------------------------------- /workspace/magicmini/cores/patches/fake-08.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/cores/patches/fake-08.patch -------------------------------------------------------------------------------- /workspace/magicmini/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/magicmini/cores/patches/gambatte.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/cores/patches/gambatte.patch -------------------------------------------------------------------------------- /workspace/magicmini/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/magicmini/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/magicmini/cores/patches/pokemini.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/cores/patches/pokemini.patch -------------------------------------------------------------------------------- /workspace/magicmini/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/magicmini/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/install/boot.sh -------------------------------------------------------------------------------- /workspace/magicmini/install/installing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/install/installing.bmp -------------------------------------------------------------------------------- /workspace/magicmini/install/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/install/notes.txt -------------------------------------------------------------------------------- /workspace/magicmini/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/install/update.sh -------------------------------------------------------------------------------- /workspace/magicmini/install/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/install/updating.bmp -------------------------------------------------------------------------------- /workspace/magicmini/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/magicmini/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/magicmini/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/keymon/makefile -------------------------------------------------------------------------------- /workspace/magicmini/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/magicmini/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/magicmini/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/magicmini/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/makefile -------------------------------------------------------------------------------- /workspace/magicmini/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/magicmini/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/platform/makefile.env -------------------------------------------------------------------------------- /workspace/magicmini/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/platform/platform.c -------------------------------------------------------------------------------- /workspace/magicmini/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/magicmini/platform/platform.h -------------------------------------------------------------------------------- /workspace/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/batmon/batmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/batmon/batmon.c -------------------------------------------------------------------------------- /workspace/miyoomini/batmon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/batmon/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/blank/blank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/blank/blank.c -------------------------------------------------------------------------------- /workspace/miyoomini/blank/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/blank/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/cores/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/cores/patches/fake-08.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/cores/patches/fake-08.patch -------------------------------------------------------------------------------- /workspace/miyoomini/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/miyoomini/cores/patches/gambatte.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/cores/patches/gambatte.patch -------------------------------------------------------------------------------- /workspace/miyoomini/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/miyoomini/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/miyoomini/cores/patches/pokemini.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/cores/patches/pokemini.patch -------------------------------------------------------------------------------- /workspace/miyoomini/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/miyoomini/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/install/boot.sh -------------------------------------------------------------------------------- /workspace/miyoomini/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/install/installing.png -------------------------------------------------------------------------------- /workspace/miyoomini/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/install/update.sh -------------------------------------------------------------------------------- /workspace/miyoomini/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/install/updating.png -------------------------------------------------------------------------------- /workspace/miyoomini/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/miyoomini/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/miyoomini/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/keymon/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/miyoomini/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/miyoomini/lumon/lumon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/lumon/lumon.c -------------------------------------------------------------------------------- /workspace/miyoomini/lumon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/lumon/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/other/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workspace/miyoomini/other/logotweak/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/other/logotweak/credits.txt -------------------------------------------------------------------------------- /workspace/miyoomini/other/logotweak/logomake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/other/logotweak/logomake.c -------------------------------------------------------------------------------- /workspace/miyoomini/other/logotweak/logoread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/other/logotweak/logoread.c -------------------------------------------------------------------------------- /workspace/miyoomini/other/logotweak/logowrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/other/logotweak/logowrite.c -------------------------------------------------------------------------------- /workspace/miyoomini/other/logotweak/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/other/logotweak/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/other/screenshot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/other/screenshot/Makefile -------------------------------------------------------------------------------- /workspace/miyoomini/other/screenshot/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/other/screenshot/credits.txt -------------------------------------------------------------------------------- /workspace/miyoomini/other/screenshot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/other/screenshot/main.c -------------------------------------------------------------------------------- /workspace/miyoomini/overclock/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/overclock/credits.txt -------------------------------------------------------------------------------- /workspace/miyoomini/overclock/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/overclock/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/overclock/overclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/overclock/overclock.c -------------------------------------------------------------------------------- /workspace/miyoomini/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/miyoomini/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/platform/makefile.env -------------------------------------------------------------------------------- /workspace/miyoomini/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/platform/platform.c -------------------------------------------------------------------------------- /workspace/miyoomini/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/platform/platform.h -------------------------------------------------------------------------------- /workspace/miyoomini/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/show/makefile -------------------------------------------------------------------------------- /workspace/miyoomini/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/miyoomini/show/show.c -------------------------------------------------------------------------------- /workspace/my282/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/cores/makefile -------------------------------------------------------------------------------- /workspace/my282/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/install/boot.sh -------------------------------------------------------------------------------- /workspace/my282/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/install/installing.png -------------------------------------------------------------------------------- /workspace/my282/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/install/update.sh -------------------------------------------------------------------------------- /workspace/my282/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/install/updating.png -------------------------------------------------------------------------------- /workspace/my282/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/my282/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/my282/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/keymon/makefile -------------------------------------------------------------------------------- /workspace/my282/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/my282/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/my282/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/my282/libmstick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/libmstick/makefile -------------------------------------------------------------------------------- /workspace/my282/libmstick/mstick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/libmstick/mstick.c -------------------------------------------------------------------------------- /workspace/my282/libmstick/mstick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/libmstick/mstick.h -------------------------------------------------------------------------------- /workspace/my282/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/makefile -------------------------------------------------------------------------------- /workspace/my282/other/squashfs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/other/squashfs/makefile -------------------------------------------------------------------------------- /workspace/my282/overclock/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/overclock/credits.txt -------------------------------------------------------------------------------- /workspace/my282/overclock/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/overclock/makefile -------------------------------------------------------------------------------- /workspace/my282/overclock/overclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/overclock/overclock.c -------------------------------------------------------------------------------- /workspace/my282/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/my282/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/platform/makefile.env -------------------------------------------------------------------------------- /workspace/my282/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/platform/platform.c -------------------------------------------------------------------------------- /workspace/my282/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/platform/platform.h -------------------------------------------------------------------------------- /workspace/my282/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/show/makefile -------------------------------------------------------------------------------- /workspace/my282/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/show/show.c -------------------------------------------------------------------------------- /workspace/my282/tests/brightness/brightness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/tests/brightness/brightness.c -------------------------------------------------------------------------------- /workspace/my282/tests/brightness/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/tests/brightness/makefile -------------------------------------------------------------------------------- /workspace/my282/tests/calibrate/calibrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/tests/calibrate/calibrate.c -------------------------------------------------------------------------------- /workspace/my282/tests/calibrate/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/tests/calibrate/makefile -------------------------------------------------------------------------------- /workspace/my282/tests/volume/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/tests/volume/makefile -------------------------------------------------------------------------------- /workspace/my282/tests/volume/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my282/tests/volume/volume.c -------------------------------------------------------------------------------- /workspace/my355/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/makefile -------------------------------------------------------------------------------- /workspace/my355/cores/patches/fake-08.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/fake-08.patch -------------------------------------------------------------------------------- /workspace/my355/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/my355/cores/patches/gambatte.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/gambatte.patch -------------------------------------------------------------------------------- /workspace/my355/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/my355/cores/patches/mednafen_vb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/mednafen_vb.patch -------------------------------------------------------------------------------- /workspace/my355/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/my355/cores/patches/pcsx_rearmed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/pcsx_rearmed.patch -------------------------------------------------------------------------------- /workspace/my355/cores/patches/picodrive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/picodrive.patch -------------------------------------------------------------------------------- /workspace/my355/cores/patches/pokemini.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/pokemini.patch -------------------------------------------------------------------------------- /workspace/my355/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/my355/init/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/init/init.sh -------------------------------------------------------------------------------- /workspace/my355/init/payload/runmiyoo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/init/payload/runmiyoo.sh -------------------------------------------------------------------------------- /workspace/my355/init/res/extract-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/init/res/extract-root.png -------------------------------------------------------------------------------- /workspace/my355/init/res/flash-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/init/res/flash-root.png -------------------------------------------------------------------------------- /workspace/my355/init/res/inject-hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/init/res/inject-hook.png -------------------------------------------------------------------------------- /workspace/my355/init/res/pack-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/init/res/pack-root.png -------------------------------------------------------------------------------- /workspace/my355/init/res/prep-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/init/res/prep-env.png -------------------------------------------------------------------------------- /workspace/my355/init/res/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/init/res/reboot.png -------------------------------------------------------------------------------- /workspace/my355/init/res/unpack-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/init/res/unpack-root.png -------------------------------------------------------------------------------- /workspace/my355/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/install/boot.sh -------------------------------------------------------------------------------- /workspace/my355/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/install/installing.png -------------------------------------------------------------------------------- /workspace/my355/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/install/update.sh -------------------------------------------------------------------------------- /workspace/my355/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/install/updating.png -------------------------------------------------------------------------------- /workspace/my355/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/my355/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/my355/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/keymon/makefile -------------------------------------------------------------------------------- /workspace/my355/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/my355/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/my355/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/my355/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/makefile -------------------------------------------------------------------------------- /workspace/my355/other/squashfs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/other/squashfs/makefile -------------------------------------------------------------------------------- /workspace/my355/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/my355/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/platform/makefile.env -------------------------------------------------------------------------------- /workspace/my355/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/platform/platform.c -------------------------------------------------------------------------------- /workspace/my355/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/platform/platform.h -------------------------------------------------------------------------------- /workspace/my355/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/show/makefile -------------------------------------------------------------------------------- /workspace/my355/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/my355/show/show.c -------------------------------------------------------------------------------- /workspace/rg35xx/boot/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/boot/boot.sh -------------------------------------------------------------------------------- /workspace/rg35xx/boot/boot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/boot/boot_logo.png -------------------------------------------------------------------------------- /workspace/rg35xx/boot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/boot/build.sh -------------------------------------------------------------------------------- /workspace/rg35xx/boot/installing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/boot/installing.bmp -------------------------------------------------------------------------------- /workspace/rg35xx/boot/output/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/boot/output/data -------------------------------------------------------------------------------- /workspace/rg35xx/boot/output/dmenu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/boot/output/dmenu.bin -------------------------------------------------------------------------------- /workspace/rg35xx/boot/output/installing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/boot/output/installing -------------------------------------------------------------------------------- /workspace/rg35xx/boot/output/updating: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/boot/output/updating -------------------------------------------------------------------------------- /workspace/rg35xx/boot/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/boot/updating.bmp -------------------------------------------------------------------------------- /workspace/rg35xx/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/makefile -------------------------------------------------------------------------------- /workspace/rg35xx/cores/patches/fake-08.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/patches/fake-08.patch -------------------------------------------------------------------------------- /workspace/rg35xx/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/rg35xx/cores/patches/gambatte.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/patches/gambatte.patch -------------------------------------------------------------------------------- /workspace/rg35xx/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/rg35xx/cores/patches/mednafen_vb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/patches/mednafen_vb.patch -------------------------------------------------------------------------------- /workspace/rg35xx/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/rg35xx/cores/patches/picodrive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/patches/picodrive.patch -------------------------------------------------------------------------------- /workspace/rg35xx/cores/patches/pokemini.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/patches/pokemini.patch -------------------------------------------------------------------------------- /workspace/rg35xx/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/rg35xx/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/install/install.sh -------------------------------------------------------------------------------- /workspace/rg35xx/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/rg35xx/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/rg35xx/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/keymon/makefile -------------------------------------------------------------------------------- /workspace/rg35xx/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/rg35xx/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/rg35xx/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/rg35xx/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/makefile -------------------------------------------------------------------------------- /workspace/rg35xx/other/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workspace/rg35xx/overclock/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/overclock/credits.txt -------------------------------------------------------------------------------- /workspace/rg35xx/overclock/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/overclock/makefile -------------------------------------------------------------------------------- /workspace/rg35xx/overclock/overclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/overclock/overclock.c -------------------------------------------------------------------------------- /workspace/rg35xx/platform/de_atm7059.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/platform/de_atm7059.h -------------------------------------------------------------------------------- /workspace/rg35xx/platform/ion-owl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/platform/ion-owl.h -------------------------------------------------------------------------------- /workspace/rg35xx/platform/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/platform/ion.h -------------------------------------------------------------------------------- /workspace/rg35xx/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/rg35xx/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/platform/makefile.env -------------------------------------------------------------------------------- /workspace/rg35xx/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/platform/platform.c -------------------------------------------------------------------------------- /workspace/rg35xx/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/platform/platform.h -------------------------------------------------------------------------------- /workspace/rg35xx/ramdisk/charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/ramdisk/charging.png -------------------------------------------------------------------------------- /workspace/rg35xx/ramdisk/patched-ramdisk.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/ramdisk/patched-ramdisk.img -------------------------------------------------------------------------------- /workspace/rg35xx/ramdisk/patched-ramdisk.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/ramdisk/patched-ramdisk.meta -------------------------------------------------------------------------------- /workspace/rg35xx/ramdisk/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xx/ramdisk/readme.txt -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/boot.sh -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/bootlogo-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/bootlogo-r.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/bootlogo-s.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/bootlogo-s.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/bootlogo-w.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/bootlogo-w.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/bootlogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/bootlogo.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/build.sh -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/installing-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/installing-r.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/installing-s.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/installing-s.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/installing-w.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/installing-w.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/installing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/installing.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/updating-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/updating-r.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/updating-s.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/updating-s.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/updating-w.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/updating-w.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/boot/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/boot/updating.bmp -------------------------------------------------------------------------------- /workspace/rg35xxplus/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/cores/makefile -------------------------------------------------------------------------------- /workspace/rg35xxplus/init/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/init/init.c -------------------------------------------------------------------------------- /workspace/rg35xxplus/init/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/init/makefile -------------------------------------------------------------------------------- /workspace/rg35xxplus/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/install/install.sh -------------------------------------------------------------------------------- /workspace/rg35xxplus/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/rg35xxplus/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/rg35xxplus/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/keymon/makefile -------------------------------------------------------------------------------- /workspace/rg35xxplus/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/rg35xxplus/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/rg35xxplus/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/rg35xxplus/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/makefile -------------------------------------------------------------------------------- /workspace/rg35xxplus/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/rg35xxplus/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/platform/makefile.env -------------------------------------------------------------------------------- /workspace/rg35xxplus/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/platform/platform.c -------------------------------------------------------------------------------- /workspace/rg35xxplus/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/platform/platform.h -------------------------------------------------------------------------------- /workspace/rg35xxplus/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/show/makefile -------------------------------------------------------------------------------- /workspace/rg35xxplus/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rg35xxplus/show/show.c -------------------------------------------------------------------------------- /workspace/rgb30/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/makefile -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/fake-08.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/fake-08.patch -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/gambatte.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/gambatte.patch -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/mednafen_vb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/mednafen_vb.patch -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/pcsx_rearmed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/pcsx_rearmed.patch -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/picodrive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/picodrive.patch -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/pokemini.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/pokemini.patch -------------------------------------------------------------------------------- /workspace/rgb30/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/rgb30/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/rgb30/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/rgb30/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/keymon/makefile -------------------------------------------------------------------------------- /workspace/rgb30/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/rgb30/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/rgb30/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/rgb30/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/makefile -------------------------------------------------------------------------------- /workspace/rgb30/other/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workspace/rgb30/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/rgb30/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/platform/makefile.env -------------------------------------------------------------------------------- /workspace/rgb30/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/platform/platform.c -------------------------------------------------------------------------------- /workspace/rgb30/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/platform/platform.h -------------------------------------------------------------------------------- /workspace/rgb30/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/show/makefile -------------------------------------------------------------------------------- /workspace/rgb30/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/rgb30/show/show.c -------------------------------------------------------------------------------- /workspace/tg5040/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/makefile -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/fake-08.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/patches/fake-08.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/gambatte.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/patches/gambatte.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/mednafen_vb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/patches/mednafen_vb.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/picodrive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/patches/picodrive.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/pokemini.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/patches/pokemini.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/tg5040/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/install/boot.sh -------------------------------------------------------------------------------- /workspace/tg5040/install/brick/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/install/brick/installing.png -------------------------------------------------------------------------------- /workspace/tg5040/install/brick/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/install/brick/updating.png -------------------------------------------------------------------------------- /workspace/tg5040/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/install/installing.png -------------------------------------------------------------------------------- /workspace/tg5040/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/install/update.sh -------------------------------------------------------------------------------- /workspace/tg5040/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/install/updating.png -------------------------------------------------------------------------------- /workspace/tg5040/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/tg5040/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/tg5040/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/keymon/makefile -------------------------------------------------------------------------------- /workspace/tg5040/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/tg5040/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/tg5040/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/tg5040/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/makefile -------------------------------------------------------------------------------- /workspace/tg5040/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/tg5040/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/platform/makefile.env -------------------------------------------------------------------------------- /workspace/tg5040/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/platform/platform.c -------------------------------------------------------------------------------- /workspace/tg5040/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/platform/platform.h -------------------------------------------------------------------------------- /workspace/tg5040/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/show/makefile -------------------------------------------------------------------------------- /workspace/tg5040/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/tg5040/show/show.c -------------------------------------------------------------------------------- /workspace/trimuismart/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/cores/makefile -------------------------------------------------------------------------------- /workspace/trimuismart/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/trimuismart/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/trimuismart/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/trimuismart/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/trimuismart/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/install/boot.sh -------------------------------------------------------------------------------- /workspace/trimuismart/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/install/installing.png -------------------------------------------------------------------------------- /workspace/trimuismart/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/install/updating.png -------------------------------------------------------------------------------- /workspace/trimuismart/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/trimuismart/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/trimuismart/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/keymon/makefile -------------------------------------------------------------------------------- /workspace/trimuismart/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/trimuismart/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/trimuismart/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/trimuismart/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/makefile -------------------------------------------------------------------------------- /workspace/trimuismart/other/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workspace/trimuismart/platform/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/platform/ion.h -------------------------------------------------------------------------------- /workspace/trimuismart/platform/ion_sunxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/platform/ion_sunxi.h -------------------------------------------------------------------------------- /workspace/trimuismart/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/trimuismart/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/platform/makefile.env -------------------------------------------------------------------------------- /workspace/trimuismart/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/platform/platform.c -------------------------------------------------------------------------------- /workspace/trimuismart/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/platform/platform.h -------------------------------------------------------------------------------- /workspace/trimuismart/platform/sunxi_display2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/platform/sunxi_display2.h -------------------------------------------------------------------------------- /workspace/trimuismart/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/show/makefile -------------------------------------------------------------------------------- /workspace/trimuismart/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/trimuismart/show/show.c -------------------------------------------------------------------------------- /workspace/zero28/bl/bl_disable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/bl/bl_disable.c -------------------------------------------------------------------------------- /workspace/zero28/bl/bl_enable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/bl/bl_enable.c -------------------------------------------------------------------------------- /workspace/zero28/bl/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/bl/makefile -------------------------------------------------------------------------------- /workspace/zero28/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/cores/makefile -------------------------------------------------------------------------------- /workspace/zero28/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/install/boot.sh -------------------------------------------------------------------------------- /workspace/zero28/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/install/installing.png -------------------------------------------------------------------------------- /workspace/zero28/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/install/update.sh -------------------------------------------------------------------------------- /workspace/zero28/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/install/updating.png -------------------------------------------------------------------------------- /workspace/zero28/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/zero28/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/zero28/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/keymon/makefile -------------------------------------------------------------------------------- /workspace/zero28/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/zero28/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/zero28/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/zero28/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/makefile -------------------------------------------------------------------------------- /workspace/zero28/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/zero28/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/platform/makefile.env -------------------------------------------------------------------------------- /workspace/zero28/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/platform/platform.c -------------------------------------------------------------------------------- /workspace/zero28/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/platform/platform.h -------------------------------------------------------------------------------- /workspace/zero28/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/show/makefile -------------------------------------------------------------------------------- /workspace/zero28/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shauninman/MinUI/HEAD/workspace/zero28/show/show.c --------------------------------------------------------------------------------