Advertisement
metalx1000

NES ROMs on Android Quick

Dec 21st, 2022
1,459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. adb shell echo "Connected to Android Device via ADB" || exit 1
  4.  
  5. echo "Downloading Retro Arch..."
  6. wget -c "https://buildbot.libretro.com/stable/1.14.0/android/RetroArch.apk"
  7.  
  8. echo "Installing Retro Arch..."
  9. adb install -g RetroArch.apk
  10. adb shell am start -n com.retroarch/.browser.mainmenu.MainMenuActivity
  11.  
  12. echo "Downloading ROMS..."
  13. adb shell mkdir -p /sdcard/roms/nes
  14. mkdir /tmp/nes
  15. cd /tmp/nes
  16. wget -c "https://archive.org/compress/nes-rom-collection" -O nes.zip
  17. unzip nes.zip
  18. adb push *.nes /sdcard/roms/nes/
  19.  
  20. cd
  21. rm -fr /tmp/nes
  22.  
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement