├── .github ├── dependabot.yaml └── workflows │ ├── ci.yaml │ ├── dev.yaml │ └── release.yaml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── PAKS.md ├── README.md ├── commits.sh ├── github ├── README.md ├── generate_screenshots.sh ├── logo.png ├── logo_outline.png ├── 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.native ├── makefile.toolchain ├── skeleton ├── BASE │ ├── Bios │ │ ├── FC │ │ │ └── .keep │ │ ├── GB │ │ │ └── .keep │ │ ├── GBA │ │ │ └── .keep │ │ ├── GBC │ │ │ └── .keep │ │ ├── MD │ │ │ └── .keep │ │ ├── PS │ │ │ └── .keep │ │ └── SFC │ │ │ └── .keep │ ├── Cheats │ │ ├── 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 │ │ ├── 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 │ └── Shaders │ │ ├── glsl │ │ ├── aa-shader-4.0.glsl │ │ ├── barrel-distortion.glsl │ │ ├── bicubic.glsl │ │ ├── edge1pixel.glsl │ │ ├── fast-sharpen.glsl │ │ ├── lcd1x.glsl │ │ ├── lcd3x.glsl │ │ ├── pixel_art_AA.glsl │ │ ├── pixellate.glsl │ │ ├── res-independent-scanlines.glsl │ │ ├── retro-v2.glsl │ │ ├── scale3x.glsl │ │ ├── scanline.glsl │ │ ├── sharp-bilinear.glsl │ │ ├── sharp-shimmerless-grid.glsl │ │ ├── sharp-shimmerless-subpixel-vrgb.glsl │ │ ├── sharp-shimmerless.glsl │ │ ├── stock.glsl │ │ └── waterpaint.glsl │ │ ├── old-tv.cfg │ │ ├── pixelperfect-sharp.cfg │ │ ├── pixelperfect-smooth.cfg │ │ ├── real-gameboy.cfg │ │ ├── real-gba.cfg │ │ └── scanlines.cfg ├── BOOT │ ├── common │ │ └── updater │ └── trimui │ │ └── app │ │ ├── MainUI │ │ ├── keymon │ │ ├── main.sh │ │ └── runtrimui.sh ├── EXTRAS │ ├── Bios │ │ ├── A2600 │ │ │ └── .keep │ │ ├── A5200 │ │ │ └── .keep │ │ ├── A7800 │ │ │ └── .keep │ │ ├── C128 │ │ │ └── .keep │ │ ├── C64 │ │ │ └── .keep │ │ ├── COLECO │ │ │ └── .keep │ │ ├── CPC │ │ │ └── .keep │ │ ├── FDS │ │ │ └── .keep │ │ ├── GG │ │ │ └── .keep │ │ ├── LYNX │ │ │ └── .keep │ │ ├── MGBA │ │ │ └── .keep │ │ ├── MSX │ │ │ └── .keep │ │ ├── NGP │ │ │ └── .keep │ │ ├── NGPC │ │ │ └── .keep │ │ ├── P8 │ │ │ └── .keep │ │ ├── PCE │ │ │ └── .keep │ │ ├── PET │ │ │ └── .keep │ │ ├── PKM │ │ │ └── .keep │ │ ├── PLUS4 │ │ │ └── .keep │ │ ├── PRBOOM │ │ │ └── .keep │ │ ├── PUAE │ │ │ └── readme.txt │ │ ├── SEGACD │ │ │ └── .keep │ │ ├── SGB │ │ │ └── .keep │ │ ├── SMS │ │ │ └── .keep │ │ ├── VB │ │ │ └── .keep │ │ └── VIC │ │ │ └── .keep │ ├── Cheats │ │ ├── A2600 │ │ │ └── .keep │ │ ├── A5200 │ │ │ └── .keep │ │ ├── A7800 │ │ │ └── .keep │ │ ├── C128 │ │ │ └── .keep │ │ ├── C64 │ │ │ └── .keep │ │ ├── COLECO │ │ │ └── .keep │ │ ├── CPC │ │ │ └── .keep │ │ ├── GG │ │ │ └── .keep │ │ ├── MGBA │ │ │ └── .keep │ │ ├── MSX │ │ │ └── .keep │ │ ├── NGPC │ │ │ └── .keep │ │ ├── P8 │ │ │ └── .keep │ │ ├── PCE │ │ │ └── .keep │ │ ├── PET │ │ │ └── .keep │ │ ├── PKM │ │ │ └── .keep │ │ ├── PLUS4 │ │ │ └── .keep │ │ ├── PUAE │ │ │ └── .keep │ │ ├── SGB │ │ │ └── .keep │ │ ├── SMS │ │ │ └── .keep │ │ ├── SUPA │ │ │ └── .keep │ │ ├── VB │ │ │ └── .keep │ │ └── VIC │ │ │ └── .keep │ ├── Emus │ │ └── tg5040 │ │ │ ├── 32X.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── A2600.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── A5200.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── A7800.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── C128.pak │ │ │ ├── default-brick.cfg │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── C64.pak │ │ │ ├── default-brick.cfg │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── COLECO.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── CPC.pak │ │ │ ├── default-brick.cfg │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── FBN.pak │ │ │ ├── default-brick.cfg │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── FDS.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── GG.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── LYNX.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── MGBA.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── MSX.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 │ │ │ ├── PET.pak │ │ │ ├── default-brick.cfg │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── PKM.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── PLUS4.pak │ │ │ ├── default-brick.cfg │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── PRBOOM.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── PUAE.pak │ │ │ ├── default-brick.cfg │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── SEGACD.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ │ ├── SG1000.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 │ │ │ └── VIC.pak │ │ │ ├── default-brick.cfg │ │ │ ├── default.cfg │ │ │ └── launch.sh │ ├── Overlays │ │ └── GBA │ │ │ ├── overlay1.png │ │ │ └── overlay2.png │ ├── README.txt │ ├── Roms │ │ ├── Amiga (PUAE) │ │ │ └── .keep │ │ ├── Amstrad CPC (CPC) │ │ │ └── .keep │ │ ├── Arcade (FBN) │ │ │ └── .keep │ │ ├── Atari 2600 (A2600) │ │ │ └── .keep │ │ ├── Atari 5200 (A5200) │ │ │ └── .keep │ │ ├── Atari 7800 (A7800) │ │ │ └── .keep │ │ ├── Atari Lynx (LYNX) │ │ │ └── .keep │ │ ├── Colecovision (COLECO) │ │ │ └── .keep │ │ ├── Commodore 128 (C128) │ │ │ └── .keep │ │ ├── Commodore 64 (C64) │ │ │ └── .keep │ │ ├── Commodore PET (PET) │ │ │ └── .keep │ │ ├── Commodore Plus4 (PLUS4) │ │ │ └── .keep │ │ ├── Commodore VIC20 (VIC) │ │ │ └── .keep │ │ ├── Doom (PRBOOM) │ │ │ └── .keep │ │ ├── Famicom Disk System (FDS) │ │ │ └── .keep │ │ ├── Game Boy Advance (MGBA) │ │ │ └── .keep │ │ ├── Microsoft MSX (MSX) │ │ │ └── .keep │ │ ├── Neo Geo Pocket (NGP) │ │ │ └── .keep │ │ ├── Neo Geo Pocket Color (NGPC) │ │ │ └── .keep │ │ ├── Pico-8 (P8) │ │ │ └── .keep │ │ ├── Pokémon mini (PKM) │ │ │ └── .keep │ │ ├── Sega 32X (32X) │ │ │ └── .keep │ │ ├── Sega CD (SEGACD) │ │ │ └── .keep │ │ ├── Sega Game Gear (GG) │ │ │ └── .keep │ │ ├── Sega Master System (SMS) │ │ │ └── .keep │ │ ├── Sega SG-1000 (SG1000) │ │ │ └── .keep │ │ ├── Super Game Boy (SGB) │ │ │ └── .keep │ │ ├── Super Nintendo Entertainment System (SUPA) │ │ │ └── .keep │ │ ├── TurboGrafx-16 (PCE) │ │ │ └── .keep │ │ └── Virtual Boy (VB) │ │ │ └── .keep │ ├── Saves │ │ ├── 32X │ │ │ └── .keep │ │ ├── A2600 │ │ │ └── .keep │ │ ├── A5200 │ │ │ └── .keep │ │ ├── A7800 │ │ │ └── .keep │ │ ├── COLECO │ │ │ └── .keep │ │ ├── FDS │ │ │ └── .keep │ │ ├── GG │ │ │ └── .keep │ │ ├── LYNX │ │ │ └── .keep │ │ ├── MGBA │ │ │ └── .keep │ │ ├── MSX │ │ │ └── .keep │ │ ├── NGP │ │ │ └── .keep │ │ ├── NGPC │ │ │ └── .keep │ │ ├── P8 │ │ │ └── .keep │ │ ├── PCE │ │ │ └── .keep │ │ ├── PKM │ │ │ └── .keep │ │ ├── SEGACD │ │ │ └── .keep │ │ ├── SG1000 │ │ │ └── .keep │ │ ├── SGB │ │ │ └── .keep │ │ ├── SMS │ │ │ └── .keep │ │ ├── SUPA │ │ │ └── .keep │ │ └── VB │ │ │ └── .keep │ └── Tools │ │ ├── desktop │ │ ├── Battery.pak │ │ │ └── launch.sh │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Game Tracker.pak │ │ │ └── launch.sh │ │ ├── Input.pak │ │ │ └── launch.sh │ │ └── Settings.pak │ │ │ └── launch.sh │ │ └── tg5040 │ │ ├── Battery.pak │ │ └── launch.sh │ │ ├── Bootlogo.pak │ │ ├── brick │ │ │ ├── Atari Bootlogo 2.bmp │ │ │ ├── Atari Bootlogo 3.bmp │ │ │ ├── Atari Bootlogo 4.bmp │ │ │ ├── Atari Bootlogo.bmp │ │ │ ├── DS Beta BIOS.bmp │ │ │ ├── DSi Beta BIOS.bmp │ │ │ ├── GBA BIOS BW.bmp │ │ │ ├── GBA BIOS.bmp │ │ │ ├── GBA DK 4x3 Black.bmp │ │ │ ├── GBA DK 4x3.bmp │ │ │ ├── GBA Health Safety.bmp │ │ │ ├── GBA Logo BW.bmp │ │ │ ├── GBA Logo Pixel 2.bmp │ │ │ ├── GBA Logo Pixel.bmp │ │ │ ├── GBA Logo Saturated.bmp │ │ │ ├── NeoGeo Pocket Color BIOS.bmp │ │ │ ├── NintendoPixel.bmp │ │ │ ├── NintendoPixelTilted.bmp │ │ │ ├── Sony CE Pixel.bmp │ │ │ ├── bootlogo.bmp │ │ │ ├── bootlogo_minui.bmp │ │ │ ├── bootlogo_minui_next.bmp │ │ │ └── original.bmp │ │ ├── launch.sh │ │ └── smartpro │ │ │ ├── bootlogo.bmp │ │ │ ├── bootlogo_minui.bmp │ │ │ ├── bootlogo_minui_next.bmp │ │ │ └── original.bmp │ │ ├── Clock.pak │ │ └── launch.sh │ │ ├── Files.pak │ │ ├── launch.sh │ │ ├── tg3040.cfg │ │ └── tg5040.cfg │ │ ├── Game Tracker.pak │ │ └── launch.sh │ │ ├── Input.pak │ │ └── launch.sh │ │ ├── LedControl.pak │ │ ├── launch.sh │ │ ├── ledsettings.txt │ │ ├── ledsettings_brick.txt │ │ └── main.ttf │ │ ├── Remove Loading.pak │ │ ├── brick │ │ │ └── done.png │ │ ├── done.png │ │ └── launch.sh │ │ └── Settings.pak │ │ └── launch.sh ├── SYSTEM │ ├── desktop │ │ ├── bin │ │ │ └── .keep │ │ ├── cores │ │ │ └── .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 │ │ │ │ ├── PS.pak │ │ │ │ │ ├── default.cfg │ │ │ │ │ └── launch.sh │ │ │ │ └── SFC.pak │ │ │ │ │ ├── default.cfg │ │ │ │ │ └── launch.sh │ │ │ └── MinUI.pak │ │ │ │ └── launch.sh │ │ ├── shaders │ │ │ ├── colorfix.glsl │ │ │ ├── default.glsl │ │ │ ├── noshader.glsl │ │ │ ├── overlay.glsl │ │ │ └── pixellate.glsl │ │ └── system.cfg │ ├── res │ │ ├── BPreplayBold-unhinted.otf │ │ ├── BPreplayBold-unhinted_b.otf │ │ ├── Collections@1x.png │ │ ├── Collections@2x.png │ │ ├── Collections@3x.png │ │ ├── Collections@4x.png │ │ ├── Games@1x.png │ │ ├── Games@2x.png │ │ ├── Games@3x.png │ │ ├── Games@4x.png │ │ ├── Recents@1x.png │ │ ├── Recents@2x.png │ │ ├── Recents@3x.png │ │ ├── Recents@4x.png │ │ ├── Tools@1x.png │ │ ├── Tools@2x.png │ │ ├── Tools@3x.png │ │ ├── Tools@4x.png │ │ ├── assets.svg │ │ ├── assets@1x.png │ │ ├── assets@2x.png │ │ ├── assets@3x.png │ │ ├── assets@4x.png │ │ ├── background.png │ │ ├── charging-640-480.png │ │ ├── font1.ttf │ │ ├── font2.ttf │ │ ├── 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 │ └── tg5040 │ │ ├── bin │ │ ├── reboot_next │ │ ├── setterm │ │ └── suspend │ │ ├── cores │ │ └── .keep │ │ ├── dbg │ │ └── launch.sh │ │ ├── etc │ │ ├── bluetooth │ │ │ └── bt_init.sh │ │ └── wifi │ │ │ └── wifi_init.sh │ │ ├── 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 │ │ │ ├── PS.pak │ │ │ │ ├── default-brick.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default-brick.cfg │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ │ ├── shaders │ │ ├── colorfix.glsl │ │ ├── default.glsl │ │ ├── noshader.glsl │ │ ├── overlay.glsl │ │ └── pixellate.glsl │ │ ├── system-brick.cfg │ │ └── system.cfg └── _unmaintained │ ├── BOOT │ ├── magicx │ │ └── init.sh │ └── miyoo │ │ └── app │ │ ├── MainUI │ │ ├── keymon │ │ ├── miyoomini.sh │ │ ├── my282.sh │ │ └── my355.sh │ ├── EXTRAS │ ├── 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 │ │ ├── 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 │ └── 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 │ │ ├── Bootlogo.pak │ │ │ └── launch.sh │ │ ├── Clock.pak │ │ │ └── launch.sh │ │ ├── Files.pak │ │ │ └── launch.sh │ │ └── Input.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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── 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 │ │ │ ├── PS.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ │ └── SFC.pak │ │ │ │ ├── default.cfg │ │ │ │ └── launch.sh │ │ └── MinUI.pak │ │ │ └── launch.sh │ └── system.cfg │ └── zero28 │ ├── bin │ ├── setterm │ ├── shutdown │ └── suspend │ ├── 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 │ │ ├── PS.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ │ └── SFC.pak │ │ │ ├── default.cfg │ │ │ └── launch.sh │ └── MinUI.pak │ │ └── launch.sh │ └── system.cfg ├── todo.txt └── workspace ├── _unmaintained ├── 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 ├── 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 ├── 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 │ │ └── 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 ├── 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 ├── all ├── batmon │ ├── batmon.c │ └── makefile ├── battery │ ├── battery.c │ └── makefile ├── bootlogo │ ├── bootlogo.c │ └── makefile ├── clock │ ├── clock.c │ └── makefile ├── common │ ├── api.c │ ├── api.h │ ├── config.c │ ├── config.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 ├── gametime │ ├── gametime.c │ └── makefile ├── gametimectl │ ├── gametimectl.c │ └── makefile ├── ledcontrol │ ├── ledcontrol.c │ └── makefile ├── libbatmondb │ ├── batmondb.c │ ├── batmondb.h │ └── makefile ├── libgametimedb │ ├── gametimedb.c │ ├── gametimedb.h │ └── makefile ├── mapmaker │ ├── .gitignore │ ├── FC.xml │ ├── GB.xml │ ├── GBA.xml │ ├── GBC.xml │ ├── MD.xml │ ├── Makefile │ ├── SFC.xml │ ├── folders.xml │ ├── fuzzy_match_gamelist │ └── fuzzy_match_gamelist.py ├── minarch │ ├── do.sh │ ├── makefile │ └── minarch.c ├── minput │ ├── makefile │ └── minput.c ├── nextui │ ├── do.sh │ ├── makefile │ └── nextui.c ├── nextval │ ├── makefile │ └── nextval.c ├── readmes │ └── makefile ├── settings │ ├── btmenu.cpp │ ├── btmenu.hpp │ ├── keyboardprompt.cpp │ ├── keyboardprompt.hpp │ ├── makefile │ ├── menu.cpp │ ├── menu.hpp │ ├── settings.cpp │ ├── wifimenu.cpp │ └── wifimenu.hpp └── syncsettings │ ├── makefile │ └── syncsettings.c ├── desktop ├── cores │ ├── makefile │ └── patches │ │ └── gambatte.patch ├── libmsettings │ ├── makefile │ ├── msettings.c │ └── msettings.h ├── macos_create_gcc_symlinks.sh ├── makefile └── platform │ ├── makefile.copy │ ├── makefile.env │ ├── platform.c │ └── platform.h ├── makefile └── tg5040 ├── audiomon ├── Makefile ├── audiomon.cpp └── configs │ ├── 20-bluealsa.conf │ ├── alsa.conf │ └── asound.conf ├── btmanager ├── Makefile ├── src │ ├── Makefile │ ├── include │ │ ├── bt_dev_list.h │ │ ├── bt_log.h │ │ └── bt_manager.h │ └── lib │ │ └── aarch64 │ │ ├── glibc-gcc8_3_0 │ │ └── libbtmg.so │ │ └── glibc │ │ └── libbtmg.so └── support │ └── upgrade_bluez.sh ├── cores ├── makefile └── patches │ ├── a2600.patch │ ├── a5200.patch │ ├── a7800.patch │ ├── bluemsx.patch │ ├── c128.patch │ ├── c64.patch │ ├── fake-08.patch │ ├── fbneo.patch │ ├── fceumm.patch │ ├── gambatte.patch │ ├── gearcoleco.patch │ ├── gpsp.patch │ ├── handy.patch │ ├── libretro-cap32.patch │ ├── libretro-uae.patch │ ├── mednafen_pce_fast.patch │ ├── mednafen_supafaust.patch │ ├── mednafen_vb.patch │ ├── mgba.patch │ ├── pcsx_rearmed.patch │ ├── pet.patch │ ├── picodrive.patch │ ├── plus4.patch │ ├── pokemini.patch │ ├── prboom.patch │ ├── race.patch │ ├── snes9x.patch │ ├── snes9x2005_plus.patch │ └── vic.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 ├── poweroff_next ├── makefile └── poweroff_next.c ├── rfkill ├── makefile └── rfkill.c ├── show ├── makefile └── show.c └── wifimanager ├── Makefile ├── Readme ├── Readme orig cn ├── daemon ├── Makefile ├── wifi_daemon.c ├── wifid_cmd.h ├── wifid_cmd_handle.c ├── wifid_cmd_iface.c ├── wifid_cmd_iface.h ├── wifid_ctrl.c └── wifid_ctrl.h ├── files ├── udhcpc_wlan0.init ├── wifi_daemon.init ├── wpa_supplicant.conf ├── wpa_supplicant.init ├── wpa_supplicant_overlay.conf └── wpa_supplicant_src.conf └── src └── core ├── Makefile ├── include ├── scan.h ├── status_info.h ├── tool.h ├── wifi.h ├── wifi_event.h ├── wifi_intf.h ├── wifi_udhcpc.h ├── wmg_debug.h ├── wpa_ctrl.h └── wpa_supplicant_conf.h ├── libwpa_client.a ├── libwpa_client_64.a ├── libwpa_client_riscv.a ├── libwpa_client_softft.a ├── scan.c ├── status_info.c ├── tool.c ├── wifi.c ├── wifi_event.c ├── wifi_udhcpc.c ├── wifimanager.c ├── wmg_debug.c └── wpa_supplicant_conf.c /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/.github/workflows/dev.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/LICENSE -------------------------------------------------------------------------------- /PAKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/PAKS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/README.md -------------------------------------------------------------------------------- /commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/commits.sh -------------------------------------------------------------------------------- /github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/README.md -------------------------------------------------------------------------------- /github/generate_screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/generate_screenshots.sh -------------------------------------------------------------------------------- /github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/logo.png -------------------------------------------------------------------------------- /github/logo_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/logo_outline.png -------------------------------------------------------------------------------- /github/minui-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-clock.png -------------------------------------------------------------------------------- /github/minui-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-main.png -------------------------------------------------------------------------------- /github/minui-menu-gbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-gbc.png -------------------------------------------------------------------------------- /github/minui-menu-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-md.png -------------------------------------------------------------------------------- /github/minui-menu-options-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-options-controls.png -------------------------------------------------------------------------------- /github/minui-menu-options-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-options-core.png -------------------------------------------------------------------------------- /github/minui-menu-options-frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-options-frontend.png -------------------------------------------------------------------------------- /github/minui-menu-options-shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-options-shortcuts.png -------------------------------------------------------------------------------- /github/minui-menu-p8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-p8.png -------------------------------------------------------------------------------- /github/minui-menu-ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-ps.png -------------------------------------------------------------------------------- /github/minui-menu-sfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-sfc.png -------------------------------------------------------------------------------- /github/minui-menu-sgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-sgb.png -------------------------------------------------------------------------------- /github/minui-menu-vb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/github/minui-menu-vb.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/makefile -------------------------------------------------------------------------------- /makefile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/makefile.native -------------------------------------------------------------------------------- /makefile.toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/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/Cheats/FC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Cheats/GB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Cheats/GBA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Cheats/GBC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Cheats/MD/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Cheats/PS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/Cheats/SFC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/BASE/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/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/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/BASE/Shaders/glsl/aa-shader-4.0.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/aa-shader-4.0.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/barrel-distortion.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/barrel-distortion.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/bicubic.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/bicubic.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/edge1pixel.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/edge1pixel.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/fast-sharpen.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/fast-sharpen.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/lcd1x.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/lcd1x.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/lcd3x.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/lcd3x.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/pixel_art_AA.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/pixel_art_AA.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/pixellate.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/pixellate.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/retro-v2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/retro-v2.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/scale3x.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/scale3x.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/scanline.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/scanline.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/sharp-bilinear.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/sharp-bilinear.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/sharp-shimmerless-grid.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/sharp-shimmerless-grid.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/sharp-shimmerless.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/sharp-shimmerless.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/stock.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/stock.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/glsl/waterpaint.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/glsl/waterpaint.glsl -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/old-tv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/old-tv.cfg -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/pixelperfect-sharp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/pixelperfect-sharp.cfg -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/pixelperfect-smooth.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/pixelperfect-smooth.cfg -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/real-gameboy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/real-gameboy.cfg -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/real-gba.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/real-gba.cfg -------------------------------------------------------------------------------- /skeleton/BASE/Shaders/scanlines.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BASE/Shaders/scanlines.cfg -------------------------------------------------------------------------------- /skeleton/BOOT/common/updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BOOT/common/updater -------------------------------------------------------------------------------- /skeleton/BOOT/trimui/app/MainUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/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/LoveRetro/NextUI/HEAD/skeleton/BOOT/trimui/app/main.sh -------------------------------------------------------------------------------- /skeleton/BOOT/trimui/app/runtrimui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/BOOT/trimui/app/runtrimui.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/A2600/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/A5200/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/A7800/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/C128/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/C64/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/COLECO/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/CPC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/FDS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/GG/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/LYNX/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/MGBA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/MSX/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/NGP/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/NGPC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/P8/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/PCE/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/PET/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/PKM/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/PLUS4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/PRBOOM/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/PUAE/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Bios/PUAE/readme.txt -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/SEGACD/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/SGB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/SMS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/VB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Bios/VIC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/A2600/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/A5200/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/A7800/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/C128/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/C64/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/COLECO/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/CPC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/GG/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/MGBA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/MSX/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/NGPC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/P8/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/PCE/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/PET/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/PKM/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/PLUS4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/PUAE/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/SGB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/SMS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/SUPA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/VB/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Cheats/VIC/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/32X.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/32X.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/32X.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/32X.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/A2600.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/A2600.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/A2600.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/A2600.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/A5200.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/A5200.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/A5200.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/A5200.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/A7800.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/A7800.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/A7800.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/A7800.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/C128.pak/default-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/C128.pak/default-brick.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/C128.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/C128.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/C128.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/C128.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/C64.pak/default-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/C64.pak/default-brick.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/C64.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/C64.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/C64.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/C64.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/COLECO.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/COLECO.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/COLECO.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/COLECO.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/CPC.pak/default-brick.cfg: -------------------------------------------------------------------------------- 1 | minarch_screen_scaling = Aspect 2 | 3 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/CPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/CPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/CPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/CPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/FBN.pak/default-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/FBN.pak/default-brick.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/FBN.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/FBN.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/FBN.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/FBN.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/FDS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/FDS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/FDS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/FDS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/GG.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/GG.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/LYNX.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/LYNX.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/LYNX.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/LYNX.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/MGBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/MGBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/MGBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/MGBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/MSX.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/MSX.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/MSX.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/MSX.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/NGP.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/NGP.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/NGP.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/NGP.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/NGPC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/NGPC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/NGPC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/NGPC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/P8.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/P8.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PCE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PCE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PCE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PCE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PET.pak/default-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PET.pak/default-brick.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PET.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PET.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PET.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PET.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PKM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PKM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PKM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PKM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PLUS4.pak/default-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PLUS4.pak/default-brick.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PLUS4.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PLUS4.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PLUS4.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PLUS4.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PRBOOM.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PRBOOM.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PRBOOM.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PRBOOM.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PUAE.pak/default-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PUAE.pak/default-brick.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PUAE.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PUAE.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/PUAE.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/PUAE.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SEGACD.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SEGACD.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SEGACD.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SEGACD.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SG1000.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SG1000.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SG1000.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SG1000.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SGB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SGB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SGB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SGB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SMS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SMS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SMS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SMS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SUPA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SUPA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/SUPA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/SUPA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/VB.pak/default-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/VB.pak/default-brick.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/VB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/VB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/VIC.pak/default-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/VIC.pak/default-brick.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/VIC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/VIC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Emus/tg5040/VIC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Emus/tg5040/VIC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Overlays/GBA/overlay1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Overlays/GBA/overlay1.png -------------------------------------------------------------------------------- /skeleton/EXTRAS/Overlays/GBA/overlay2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Overlays/GBA/overlay2.png -------------------------------------------------------------------------------- /skeleton/EXTRAS/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/README.txt -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Amiga (PUAE)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Amstrad CPC (CPC)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Arcade (FBN)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Atari 2600 (A2600)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Atari 5200 (A5200)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Atari 7800 (A7800)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Atari Lynx (LYNX)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Colecovision (COLECO)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Commodore 128 (C128)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Commodore 64 (C64)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Commodore PET (PET)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Commodore Plus4 (PLUS4)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Commodore VIC20 (VIC)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Doom (PRBOOM)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Famicom Disk System (FDS)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Game Boy Advance (MGBA)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Microsoft MSX (MSX)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Neo Geo Pocket (NGP)/.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 32X (32X)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Sega CD (SEGACD)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Sega Game Gear (GG)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Sega Master System (SMS)/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Roms/Sega SG-1000 (SG1000)/.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/32X/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/A2600/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/A5200/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/A7800/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/COLECO/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/FDS/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/GG/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/LYNX/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/MGBA/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/MSX/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/NGP/.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/SEGACD/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Saves/SG1000/.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/desktop/Battery.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./battery.elf # &> ./log.txt 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/desktop/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf # &> ./log.txt 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/desktop/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/desktop/Settings.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Tools/desktop/Settings.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Battery.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./battery.elf # &> ./log.txt 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Bootlogo.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./bootlogo.elf # &> ./log.txt -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Tools/tg5040/Files.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Files.pak/tg3040.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Tools/tg5040/Files.pak/tg3040.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Files.pak/tg5040.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Tools/tg5040/Files.pak/tg5040.cfg -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Game Tracker.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Tools/tg5040/Game Tracker.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/LedControl.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Tools/tg5040/LedControl.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/LedControl.pak/main.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Tools/tg5040/LedControl.pak/main.ttf -------------------------------------------------------------------------------- /skeleton/EXTRAS/Tools/tg5040/Settings.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/EXTRAS/Tools/tg5040/Settings.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/FC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/FC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/FC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/FC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/GB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/GB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/GB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/GB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/GBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/GBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/GBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/GBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/GBC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/GBC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/GBC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/GBC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/MD.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/MD.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/MD.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/MD.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/PS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/PS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/PS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/PS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/SFC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/SFC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/Emus/SFC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/Emus/SFC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/paks/MinUI.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/paks/MinUI.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/shaders/colorfix.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/shaders/colorfix.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/shaders/default.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/shaders/default.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/shaders/noshader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/shaders/noshader.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/shaders/overlay.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/shaders/overlay.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/shaders/pixellate.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/shaders/pixellate.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/desktop/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/desktop/system.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/BPreplayBold-unhinted.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/BPreplayBold-unhinted.otf -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/BPreplayBold-unhinted_b.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/BPreplayBold-unhinted_b.otf -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Collections@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Collections@1x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Collections@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Collections@2x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Collections@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Collections@3x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Collections@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Collections@4x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Games@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Games@1x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Games@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Games@2x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Games@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Games@3x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Games@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Games@4x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Recents@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Recents@1x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Recents@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Recents@2x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Recents@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Recents@3x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Recents@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Recents@4x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Tools@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Tools@1x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Tools@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Tools@2x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Tools@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Tools@3x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/Tools@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/Tools@4x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/assets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/assets.svg -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/assets@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/assets@1x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/assets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/assets@2x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/assets@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/assets@3x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/assets@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/assets@4x.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/background.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/charging-640-480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/charging-640-480.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/font1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/font1.ttf -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/font2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/font2.ttf -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/grid-11.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/grid-2.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/grid-3.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/grid-4.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/grid-5.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/grid-6.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/grid-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/grid-8.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/line-2.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/line-3.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/line-4.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/line-5.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/line-6.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/res/line-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/res/line-8.png -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/bin/reboot_next: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/bin/reboot_next -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/bin/setterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/bin/setterm -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/bin/suspend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/bin/suspend -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/dbg/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/dbg/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/etc/bluetooth/bt_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/etc/bluetooth/bt_init.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/etc/wifi/wifi_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/etc/wifi/wifi_init.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/FC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/FC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/FC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/FC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/GB.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/GB.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/GB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/GB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/GBA.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/GBA.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/GBA.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/GBA.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/GBC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/GBC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/GBC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/GBC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/MD.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/MD.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/MD.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/MD.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/PS.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/PS.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/PS.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/PS.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/SFC.pak/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/SFC.pak/default.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/Emus/SFC.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/Emus/SFC.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/paks/MinUI.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/paks/MinUI.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/shaders/colorfix.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/shaders/colorfix.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/shaders/default.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/shaders/default.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/shaders/noshader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/shaders/noshader.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/shaders/overlay.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/shaders/overlay.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/shaders/pixellate.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/shaders/pixellate.glsl -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/system-brick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/system-brick.cfg -------------------------------------------------------------------------------- /skeleton/SYSTEM/tg5040/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/SYSTEM/tg5040/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/BOOT/magicx/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/BOOT/magicx/init.sh -------------------------------------------------------------------------------- /skeleton/_unmaintained/BOOT/miyoo/app/MainUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/BOOT/miyoo/app/MainUI -------------------------------------------------------------------------------- /skeleton/_unmaintained/BOOT/miyoo/app/keymon: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/BOOT/miyoo/app/miyoomini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/BOOT/miyoo/app/miyoomini.sh -------------------------------------------------------------------------------- /skeleton/_unmaintained/BOOT/miyoo/app/my282.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/BOOT/miyoo/app/my282.sh -------------------------------------------------------------------------------- /skeleton/_unmaintained/BOOT/miyoo/app/my355.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/BOOT/miyoo/app/my355.sh -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Emus/m17/GG.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/EXTRAS/Emus/m17/GG.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Emus/m17/P8.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/EXTRAS/Emus/m17/P8.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Emus/m17/VB.pak/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/EXTRAS/Emus/m17/VB.pak/launch.sh -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/gkdpixel/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/gkdpixel/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/m17/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/m17/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/magicmini/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/magicmini/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd "$(dirname "$0")" 4 | ./351Files -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/magicmini/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/miyoomini/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/miyoomini/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/miyoomini/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my282/Bootlogo.pak/res/offset-20240401221906: -------------------------------------------------------------------------------- 1 | 419664 -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my282/Bootlogo.pak/res/offset-20240426150228: -------------------------------------------------------------------------------- 1 | 419664 -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my282/Bootlogo.pak/res/offset-20240516174101: -------------------------------------------------------------------------------- 1 | 419616 -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my282/Bootlogo.pak/res/offset-20240713100458: -------------------------------------------------------------------------------- 1 | 419616 -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my282/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my282/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my282/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my355/Bootlogo.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./apply.sh > ./log.txt 2>&1 -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my355/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my355/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/my355/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rg35xx/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rg35xx/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rg35xx/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rg35xxplus/Apply Panel Fix.pak/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rg35xxplus/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rg35xxplus/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rg35xxplus/Swap Menu.pak/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rgb30/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rgb30/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rgb30/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/rgb30/Wi-Fi.pak/wifi.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/trimuismart/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/trimuismart/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/trimuismart/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/zero28/Clock.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./clock.elf # &> ./log.txt 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/zero28/Files.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | 5 | HOME="$SDCARD_PATH" 6 | ./DinguxCommander -------------------------------------------------------------------------------- /skeleton/_unmaintained/EXTRAS/Tools/zero28/Input.pak/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname "$0") 4 | ./minput.elf 5 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/gkdpixel/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/gkdpixel/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/gkdpixel/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/gkdpixel/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/gkdpixel/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/gkdpixel/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/gkdpixel/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/m17/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/m17/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/m17/bin/start_adbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/m17/bin/start_adbd.sh -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/m17/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/m17/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/m17/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/m17/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/m17/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/magicmini/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/magicmini/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/magicmini/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/magicmini/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/magicmini/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/magicmini/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/magicmini/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/miyoomini/bin/needs-swap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/miyoomini/bin/needs-swap -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/miyoomini/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/miyoomini/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/miyoomini/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/miyoomini/dat/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/miyoomini/dat/image1.jpg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/miyoomini/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/miyoomini/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/miyoomini/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my282/bin/setterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/my282/bin/setterm -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my282/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/my282/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my282/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my282/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my282/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my282/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/my282/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my355/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/my355/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my355/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my355/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my355/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/my355/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/my355/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xx/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/rg35xx/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xx/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xx/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xx/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xx/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/rg35xx/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xxplus/bin/hdmimon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/rg35xxplus/bin/hdmimon.sh -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xxplus/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/rg35xxplus/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xxplus/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xxplus/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xxplus/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rg35xxplus/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/rg35xxplus/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rgb30/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/rgb30/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rgb30/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rgb30/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rgb30/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/rgb30/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/rgb30/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/trimuismart/bin/leds_off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/trimuismart/bin/leds_off -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/trimuismart/bin/leds_on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/trimuismart/bin/leds_on -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/trimuismart/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/trimuismart/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/trimuismart/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/trimuismart/dat/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/trimuismart/dat/logo.bmp -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/trimuismart/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/trimuismart/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/trimuismart/system.cfg -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/zero28/bin/setterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/zero28/bin/setterm -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/zero28/bin/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/zero28/bin/shutdown -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/zero28/bin/suspend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/zero28/bin/suspend -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/zero28/cores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/zero28/dat/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/zero28/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/_unmaintained/SYSTEM/zero28/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/skeleton/_unmaintained/SYSTEM/zero28/system.cfg -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/todo.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/boot/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/boot/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/boot/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/boot/install.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/boot/installing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/boot/installing.bmp -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/boot/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/boot/updating.bmp -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/input/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/input/input.c -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/input/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/input/input.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/input/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/input/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/install/install.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/platform/makefile.env: -------------------------------------------------------------------------------- 1 | # gkdpixel 2 | ARCH = -std=gnu99 3 | LIBS = -flto 4 | -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/platform/platform.c -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/platform/platform.h -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/test/main.c -------------------------------------------------------------------------------- /workspace/_unmaintained/gkdpixel/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/gkdpixel/test/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/boot/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/boot/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/boot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/boot/build.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/boot/installing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/boot/installing.bmp -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/boot/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/boot/notes.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/boot/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/boot/updating.bmp -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/cores/patches/fake-08.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/cores/patches/fake-08.patch -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/install/install.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/platform/makefile.env -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/platform/platform.c -------------------------------------------------------------------------------- /workspace/_unmaintained/m17/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/m17/platform/platform.h -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/install/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/install/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/install/notes.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/install/update.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/install/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/install/updating.bmp -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/platform/makefile.env -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/platform/platform.c -------------------------------------------------------------------------------- /workspace/_unmaintained/magicmini/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/magicmini/platform/platform.h -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/batmon/batmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/batmon/batmon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/batmon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/batmon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/blank/blank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/blank/blank.c -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/blank/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/blank/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/install/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/install/update.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/install/updating.png -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/lumon/lumon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/lumon/lumon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/lumon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/lumon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/other/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/overclock/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/overclock/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/overclock/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/overclock/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/overclock/overclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/overclock/overclock.c -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/platform/makefile.env -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/platform/platform.c -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/platform/platform.h -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/show/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/miyoomini/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/miyoomini/show/show.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/install/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/install/installing.png -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/install/update.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/install/updating.png -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/libmstick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/libmstick/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/libmstick/mstick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/libmstick/mstick.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/libmstick/mstick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/libmstick/mstick.h -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/other/squashfs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/other/squashfs/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/overclock/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/overclock/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/overclock/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/overclock/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/overclock/overclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/overclock/overclock.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/platform/makefile.env -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/platform/platform.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/platform/platform.h -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/show/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/show/show.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/tests/brightness/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/tests/brightness/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/tests/calibrate/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/tests/calibrate/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/tests/volume/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/tests/volume/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my282/tests/volume/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my282/tests/volume/volume.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/init/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/init/init.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/init/res/flash-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/init/res/flash-root.png -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/init/res/pack-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/init/res/pack-root.png -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/init/res/prep-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/init/res/prep-env.png -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/init/res/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/init/res/reboot.png -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/install/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/install/installing.png -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/install/update.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/install/updating.png -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/other/squashfs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/other/squashfs/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/platform/makefile.env -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/platform/platform.c -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/platform/platform.h -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/show/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/my355/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/my355/show/show.c -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/boot/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/boot/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/boot/boot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/boot/boot_logo.png -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/boot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/boot/build.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/boot/installing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/boot/installing.bmp -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/boot/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/boot/updating.bmp -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/install/install.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/other/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/overclock/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/overclock/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/overclock/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/overclock/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/overclock/overclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/overclock/overclock.c -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/platform/de_atm7059.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/platform/de_atm7059.h -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/platform/ion-owl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/platform/ion-owl.h -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/platform/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/platform/ion.h -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/platform/makefile.env -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/platform/platform.c -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/platform/platform.h -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/ramdisk/charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/ramdisk/charging.png -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xx/ramdisk/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xx/ramdisk/readme.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/boot/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/boot/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/boot/bootlogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/boot/bootlogo.bmp -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/boot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/boot/build.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/boot/updating.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/boot/updating.bmp -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/init/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/init/init.c -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/init/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/init/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/install/install.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/show/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rg35xxplus/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rg35xxplus/show/show.c -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/other/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/platform/makefile.env -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/platform/platform.c -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/platform/platform.h -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/show/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/rgb30/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/rgb30/show/show.c -------------------------------------------------------------------------------- /workspace/_unmaintained/trimuismart/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/trimuismart/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/trimuismart/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/trimuismart/install/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/trimuismart/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/trimuismart/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/trimuismart/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/trimuismart/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/trimuismart/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/trimuismart/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/trimuismart/other/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workspace/_unmaintained/trimuismart/platform/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/trimuismart/platform/ion.h -------------------------------------------------------------------------------- /workspace/_unmaintained/trimuismart/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/trimuismart/show/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/trimuismart/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/trimuismart/show/show.c -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/bl/bl_disable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/bl/bl_disable.c -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/bl/bl_enable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/bl/bl_enable.c -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/bl/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/bl/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/cores/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/install/boot.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/install/installing.png -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/install/update.sh -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/install/updating.png -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/keymon/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/platform/makefile.env -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/platform/platform.c -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/platform/platform.h -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/show/makefile -------------------------------------------------------------------------------- /workspace/_unmaintained/zero28/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/_unmaintained/zero28/show/show.c -------------------------------------------------------------------------------- /workspace/all/batmon/batmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/batmon/batmon.c -------------------------------------------------------------------------------- /workspace/all/batmon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/batmon/makefile -------------------------------------------------------------------------------- /workspace/all/battery/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/battery/battery.c -------------------------------------------------------------------------------- /workspace/all/battery/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/battery/makefile -------------------------------------------------------------------------------- /workspace/all/bootlogo/bootlogo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/bootlogo/bootlogo.c -------------------------------------------------------------------------------- /workspace/all/bootlogo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/bootlogo/makefile -------------------------------------------------------------------------------- /workspace/all/clock/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/clock/clock.c -------------------------------------------------------------------------------- /workspace/all/clock/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/clock/makefile -------------------------------------------------------------------------------- /workspace/all/common/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/api.c -------------------------------------------------------------------------------- /workspace/all/common/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/api.h -------------------------------------------------------------------------------- /workspace/all/common/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/config.c -------------------------------------------------------------------------------- /workspace/all/common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/config.h -------------------------------------------------------------------------------- /workspace/all/common/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/defines.h -------------------------------------------------------------------------------- /workspace/all/common/scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/scaler.c -------------------------------------------------------------------------------- /workspace/all/common/scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/scaler.h -------------------------------------------------------------------------------- /workspace/all/common/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/sdl.h -------------------------------------------------------------------------------- /workspace/all/common/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/utils.c -------------------------------------------------------------------------------- /workspace/all/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/common/utils.h -------------------------------------------------------------------------------- /workspace/all/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/cores/makefile -------------------------------------------------------------------------------- /workspace/all/gametime/gametime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/gametime/gametime.c -------------------------------------------------------------------------------- /workspace/all/gametime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/gametime/makefile -------------------------------------------------------------------------------- /workspace/all/gametimectl/gametimectl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/gametimectl/gametimectl.c -------------------------------------------------------------------------------- /workspace/all/gametimectl/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/gametimectl/makefile -------------------------------------------------------------------------------- /workspace/all/ledcontrol/ledcontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/ledcontrol/ledcontrol.c -------------------------------------------------------------------------------- /workspace/all/ledcontrol/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/ledcontrol/makefile -------------------------------------------------------------------------------- /workspace/all/libbatmondb/batmondb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/libbatmondb/batmondb.c -------------------------------------------------------------------------------- /workspace/all/libbatmondb/batmondb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/libbatmondb/batmondb.h -------------------------------------------------------------------------------- /workspace/all/libbatmondb/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/libbatmondb/makefile -------------------------------------------------------------------------------- /workspace/all/libgametimedb/gametimedb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/libgametimedb/gametimedb.c -------------------------------------------------------------------------------- /workspace/all/libgametimedb/gametimedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/libgametimedb/gametimedb.h -------------------------------------------------------------------------------- /workspace/all/libgametimedb/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/libgametimedb/makefile -------------------------------------------------------------------------------- /workspace/all/mapmaker/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | *.spec -------------------------------------------------------------------------------- /workspace/all/mapmaker/FC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/FC.xml -------------------------------------------------------------------------------- /workspace/all/mapmaker/GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/GB.xml -------------------------------------------------------------------------------- /workspace/all/mapmaker/GBA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/GBA.xml -------------------------------------------------------------------------------- /workspace/all/mapmaker/GBC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/GBC.xml -------------------------------------------------------------------------------- /workspace/all/mapmaker/MD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/MD.xml -------------------------------------------------------------------------------- /workspace/all/mapmaker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/Makefile -------------------------------------------------------------------------------- /workspace/all/mapmaker/SFC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/SFC.xml -------------------------------------------------------------------------------- /workspace/all/mapmaker/folders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/folders.xml -------------------------------------------------------------------------------- /workspace/all/mapmaker/fuzzy_match_gamelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/fuzzy_match_gamelist -------------------------------------------------------------------------------- /workspace/all/mapmaker/fuzzy_match_gamelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/mapmaker/fuzzy_match_gamelist.py -------------------------------------------------------------------------------- /workspace/all/minarch/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/minarch/do.sh -------------------------------------------------------------------------------- /workspace/all/minarch/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/minarch/makefile -------------------------------------------------------------------------------- /workspace/all/minarch/minarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/minarch/minarch.c -------------------------------------------------------------------------------- /workspace/all/minput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/minput/makefile -------------------------------------------------------------------------------- /workspace/all/minput/minput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/minput/minput.c -------------------------------------------------------------------------------- /workspace/all/nextui/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/nextui/do.sh -------------------------------------------------------------------------------- /workspace/all/nextui/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/nextui/makefile -------------------------------------------------------------------------------- /workspace/all/nextui/nextui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/nextui/nextui.c -------------------------------------------------------------------------------- /workspace/all/nextval/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/nextval/makefile -------------------------------------------------------------------------------- /workspace/all/nextval/nextval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/nextval/nextval.c -------------------------------------------------------------------------------- /workspace/all/readmes/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/readmes/makefile -------------------------------------------------------------------------------- /workspace/all/settings/btmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/btmenu.cpp -------------------------------------------------------------------------------- /workspace/all/settings/btmenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/btmenu.hpp -------------------------------------------------------------------------------- /workspace/all/settings/keyboardprompt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/keyboardprompt.cpp -------------------------------------------------------------------------------- /workspace/all/settings/keyboardprompt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/keyboardprompt.hpp -------------------------------------------------------------------------------- /workspace/all/settings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/makefile -------------------------------------------------------------------------------- /workspace/all/settings/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/menu.cpp -------------------------------------------------------------------------------- /workspace/all/settings/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/menu.hpp -------------------------------------------------------------------------------- /workspace/all/settings/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/settings.cpp -------------------------------------------------------------------------------- /workspace/all/settings/wifimenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/wifimenu.cpp -------------------------------------------------------------------------------- /workspace/all/settings/wifimenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/settings/wifimenu.hpp -------------------------------------------------------------------------------- /workspace/all/syncsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/syncsettings/makefile -------------------------------------------------------------------------------- /workspace/all/syncsettings/syncsettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/all/syncsettings/syncsettings.c -------------------------------------------------------------------------------- /workspace/desktop/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/cores/makefile -------------------------------------------------------------------------------- /workspace/desktop/cores/patches/gambatte.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/cores/patches/gambatte.patch -------------------------------------------------------------------------------- /workspace/desktop/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/desktop/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/desktop/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/desktop/macos_create_gcc_symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/macos_create_gcc_symlinks.sh -------------------------------------------------------------------------------- /workspace/desktop/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/makefile -------------------------------------------------------------------------------- /workspace/desktop/platform/makefile.copy: -------------------------------------------------------------------------------- 1 | $(PLATFORM): 2 | # $@ 3 | -------------------------------------------------------------------------------- /workspace/desktop/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/platform/makefile.env -------------------------------------------------------------------------------- /workspace/desktop/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/platform/platform.c -------------------------------------------------------------------------------- /workspace/desktop/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/desktop/platform/platform.h -------------------------------------------------------------------------------- /workspace/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/makefile -------------------------------------------------------------------------------- /workspace/tg5040/audiomon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/audiomon/Makefile -------------------------------------------------------------------------------- /workspace/tg5040/audiomon/audiomon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/audiomon/audiomon.cpp -------------------------------------------------------------------------------- /workspace/tg5040/audiomon/configs/20-bluealsa.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/audiomon/configs/20-bluealsa.conf -------------------------------------------------------------------------------- /workspace/tg5040/audiomon/configs/alsa.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/audiomon/configs/alsa.conf -------------------------------------------------------------------------------- /workspace/tg5040/audiomon/configs/asound.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/audiomon/configs/asound.conf -------------------------------------------------------------------------------- /workspace/tg5040/btmanager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/btmanager/Makefile -------------------------------------------------------------------------------- /workspace/tg5040/btmanager/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/btmanager/src/Makefile -------------------------------------------------------------------------------- /workspace/tg5040/btmanager/src/include/bt_dev_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/btmanager/src/include/bt_dev_list.h -------------------------------------------------------------------------------- /workspace/tg5040/btmanager/src/include/bt_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/btmanager/src/include/bt_log.h -------------------------------------------------------------------------------- /workspace/tg5040/btmanager/src/include/bt_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/btmanager/src/include/bt_manager.h -------------------------------------------------------------------------------- /workspace/tg5040/btmanager/support/upgrade_bluez.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/btmanager/support/upgrade_bluez.sh -------------------------------------------------------------------------------- /workspace/tg5040/cores/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/makefile -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/a2600.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/a2600.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/a5200.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/a5200.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/a7800.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/a7800.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/bluemsx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/bluemsx.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/c128.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/c128.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/c64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/c64.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/fake-08.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/fake-08.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/fbneo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/fbneo.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/fceumm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/fceumm.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/gambatte.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/gambatte.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/gearcoleco.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/gearcoleco.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/gpsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/gpsp.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/handy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/handy.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/libretro-cap32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/libretro-cap32.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/libretro-uae.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/libretro-uae.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/mednafen_vb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/mednafen_vb.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/mgba.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/mgba.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/pcsx_rearmed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/pcsx_rearmed.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/pet.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/pet.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/picodrive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/picodrive.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/plus4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/plus4.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/pokemini.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/pokemini.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/prboom.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/prboom.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/race.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/race.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/snes9x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/snes9x.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/snes9x2005_plus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/snes9x2005_plus.patch -------------------------------------------------------------------------------- /workspace/tg5040/cores/patches/vic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/cores/patches/vic.patch -------------------------------------------------------------------------------- /workspace/tg5040/install/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/install/boot.sh -------------------------------------------------------------------------------- /workspace/tg5040/install/brick/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/install/brick/installing.png -------------------------------------------------------------------------------- /workspace/tg5040/install/brick/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/install/brick/updating.png -------------------------------------------------------------------------------- /workspace/tg5040/install/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/install/installing.png -------------------------------------------------------------------------------- /workspace/tg5040/install/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/install/update.sh -------------------------------------------------------------------------------- /workspace/tg5040/install/updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/install/updating.png -------------------------------------------------------------------------------- /workspace/tg5040/keymon/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/keymon/credits.txt -------------------------------------------------------------------------------- /workspace/tg5040/keymon/keymon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/keymon/keymon.c -------------------------------------------------------------------------------- /workspace/tg5040/keymon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/keymon/makefile -------------------------------------------------------------------------------- /workspace/tg5040/libmsettings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/libmsettings/makefile -------------------------------------------------------------------------------- /workspace/tg5040/libmsettings/msettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/libmsettings/msettings.c -------------------------------------------------------------------------------- /workspace/tg5040/libmsettings/msettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/libmsettings/msettings.h -------------------------------------------------------------------------------- /workspace/tg5040/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/makefile -------------------------------------------------------------------------------- /workspace/tg5040/platform/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/platform/makefile.copy -------------------------------------------------------------------------------- /workspace/tg5040/platform/makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/platform/makefile.env -------------------------------------------------------------------------------- /workspace/tg5040/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/platform/platform.c -------------------------------------------------------------------------------- /workspace/tg5040/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/platform/platform.h -------------------------------------------------------------------------------- /workspace/tg5040/poweroff_next/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/poweroff_next/makefile -------------------------------------------------------------------------------- /workspace/tg5040/poweroff_next/poweroff_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/poweroff_next/poweroff_next.c -------------------------------------------------------------------------------- /workspace/tg5040/rfkill/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/rfkill/makefile -------------------------------------------------------------------------------- /workspace/tg5040/rfkill/rfkill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/rfkill/rfkill.c -------------------------------------------------------------------------------- /workspace/tg5040/show/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/show/makefile -------------------------------------------------------------------------------- /workspace/tg5040/show/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/show/show.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/Makefile -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/Readme -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/Readme orig cn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/Readme orig cn -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/daemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/daemon/Makefile -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/daemon/wifi_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/daemon/wifi_daemon.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/daemon/wifid_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/daemon/wifid_cmd.h -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/daemon/wifid_cmd_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/daemon/wifid_cmd_iface.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/daemon/wifid_cmd_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/daemon/wifid_cmd_iface.h -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/daemon/wifid_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/daemon/wifid_ctrl.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/daemon/wifid_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/daemon/wifid_ctrl.h -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/files/udhcpc_wlan0.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/files/udhcpc_wlan0.init -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/files/wifi_daemon.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/files/wifi_daemon.init -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/files/wpa_supplicant_overlay.conf: -------------------------------------------------------------------------------- 1 | disable_scan_offload=1 -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/Makefile -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/include/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/include/scan.h -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/include/tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/include/tool.h -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/include/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/include/wifi.h -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/libwpa_client.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/libwpa_client.a -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/scan.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/status_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/status_info.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/tool.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/wifi.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/wifi_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/wifi_event.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/wifi_udhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/wifi_udhcpc.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/wifimanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/wifimanager.c -------------------------------------------------------------------------------- /workspace/tg5040/wifimanager/src/core/wmg_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveRetro/NextUI/HEAD/workspace/tg5040/wifimanager/src/core/wmg_debug.c --------------------------------------------------------------------------------