Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/retroarch-clover.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpcm720 <pcm720@gmail.com>2017-03-29 19:21:45 +0300
committerpcm720 <pcm720@gmail.com>2017-03-29 19:21:45 +0300
commit6facc6b0181c9f2387e5c4dff82de5771518d720 (patch)
tree3e5ce1fa92dead0e365b05d643489d65dfcb284f
parenteb04f1e2f06ed328ffc3b3299954fd668d7f63f0 (diff)
Removed SNES9x2005 and added SNES9x2010
-rw-r--r--README.md9
-rwxr-xr-xcore_modules/glupen64.hmod/bin/n64g2
-rw-r--r--core_modules/glupen64.hmod/readme.txt2
-rwxr-xr-xcore_modules/snes9x2005.hmod/bin/snes2
-rwxr-xr-xcore_modules/snes9x2005.hmod/etc/libretro/core/snes9x2005_libretro.sobin647323 -> 0 bytes
-rwxr-xr-xcore_modules/snes9x2010.hmod/bin/snes2
-rwxr-xr-xcore_modules/snes9x2010.hmod/bin/snes102
-rw-r--r--core_modules/snes9x2010.hmod/etc/libretro/core/snes9x2010_libretro.sobin0 -> 1482148 bytes
-rw-r--r--core_modules/snes9x2010.hmod/etc/libretro/info/snes9x2010_libretro.info (renamed from core_modules/snes9x2005.hmod/etc/libretro/info/snes9x2005_libretro.info)10
-rw-r--r--core_modules/snes9x2010.hmod/install (renamed from core_modules/snes9x2005.hmod/install)0
-rw-r--r--core_modules/snes9x2010.hmod/readme.txt (renamed from core_modules/snes9x2005.hmod/readme.txt)9
11 files changed, 26 insertions, 12 deletions
diff --git a/README.md b/README.md
index 95ea1a0..37f7d87 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ It can also run games for other consoles. This pack already contains the followi
- nestopia (Famicom/Nintendo Entertainment System, Famicom Disk System)
The following cores are available as additional modules (in core_modules folder):
-- snes9x2005 (Super Famicom/Super Nintendo)
+- snes9x2010 (Super Famicom/Super Nintendo)
- gambatte_libretro (Game Boy, Game Boy Color)
- mgba (Game Boy Advance)
- genesis_plus_gx (Sega Master System, Genesis/Mega Drive, Game Gear)
@@ -33,6 +33,7 @@ That's all. You can play near all NES games now as well as SNES, Genesis, N64, e
- To use RetroArch for any NES game, just add "--retroarch" to command line arguments. Use it if some of your NES games glitches with original NES Mini's emulator.
- To open RetroArch settings menu press Select + Start in game.
- To add RetroArch shortcut to NES Mini's shell, download and drag-and-drop CloverApp.zip to hakchi2.
+- Make sure that your FDS games have .fds extension (NOT .nes) if you want to run them with built-in emulator (kachikachi)
### Additional notes for expert users
@@ -74,9 +75,13 @@ Executables and arguments for all available cores:
- /bin/32x <rom> <clover_args>
runs "picodrive" core
- /bin/snes <rom> <clover_args>
- runs "snes9x2005" core
+ runs "snes9x2010" core
+ - /bin/snes10 <rom> <clover_args>
+ runs "snes9x2010" core
- /bin/n64 <rom> <clover_args>
runs "glupen64" core
+ - /bin/n64g <rom> <clover_args>
+ runs "glupen64" core
- /bin/a26 <rom> <clover_args>
runs "stella" core
- /bin/pce <rom> <clover_args>
diff --git a/core_modules/glupen64.hmod/bin/n64g b/core_modules/glupen64.hmod/bin/n64g
new file mode 100755
index 0000000..374d455
--- /dev/null
+++ b/core_modules/glupen64.hmod/bin/n64g
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec retroarch-clover glupen64 "$@" --ra-nosaves
diff --git a/core_modules/glupen64.hmod/readme.txt b/core_modules/glupen64.hmod/readme.txt
index 27bbe9b..33a68b9 100644
--- a/core_modules/glupen64.hmod/readme.txt
+++ b/core_modules/glupen64.hmod/readme.txt
@@ -5,6 +5,8 @@ This module will add support for Nintendo 64 games to RetroArch
Available executables and arguments:
- /bin/n64 <rom> <clover_args>
runs "glupen64" core
+- /bin/n64g <rom> <clover_args>
+ runs "glupen64" core
Core by libretro
Module by pcm
diff --git a/core_modules/snes9x2005.hmod/bin/snes b/core_modules/snes9x2005.hmod/bin/snes
deleted file mode 100755
index f35fbb7..0000000
--- a/core_modules/snes9x2005.hmod/bin/snes
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec retroarch-clover snes9x2005 "$@"
diff --git a/core_modules/snes9x2005.hmod/etc/libretro/core/snes9x2005_libretro.so b/core_modules/snes9x2005.hmod/etc/libretro/core/snes9x2005_libretro.so
deleted file mode 100755
index 589b6d2..0000000
--- a/core_modules/snes9x2005.hmod/etc/libretro/core/snes9x2005_libretro.so
+++ /dev/null
Binary files differ
diff --git a/core_modules/snes9x2010.hmod/bin/snes b/core_modules/snes9x2010.hmod/bin/snes
new file mode 100755
index 0000000..215b4ab
--- /dev/null
+++ b/core_modules/snes9x2010.hmod/bin/snes
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec retroarch-clover snes9x2010 "$@"
diff --git a/core_modules/snes9x2010.hmod/bin/snes10 b/core_modules/snes9x2010.hmod/bin/snes10
new file mode 100755
index 0000000..215b4ab
--- /dev/null
+++ b/core_modules/snes9x2010.hmod/bin/snes10
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec retroarch-clover snes9x2010 "$@"
diff --git a/core_modules/snes9x2010.hmod/etc/libretro/core/snes9x2010_libretro.so b/core_modules/snes9x2010.hmod/etc/libretro/core/snes9x2010_libretro.so
new file mode 100644
index 0000000..968dc02
--- /dev/null
+++ b/core_modules/snes9x2010.hmod/etc/libretro/core/snes9x2010_libretro.so
Binary files differ
diff --git a/core_modules/snes9x2005.hmod/etc/libretro/info/snes9x2005_libretro.info b/core_modules/snes9x2010.hmod/etc/libretro/info/snes9x2010_libretro.info
index 0fc469b..ecf195b 100644
--- a/core_modules/snes9x2005.hmod/etc/libretro/info/snes9x2005_libretro.info
+++ b/core_modules/snes9x2010.hmod/etc/libretro/info/snes9x2010_libretro.info
@@ -1,12 +1,12 @@
-display_name = "SNES / Super Famicom (Snes9x 2005)"
-authors = "Snes9x Team|dking|BassAceGold|ShadauxCat|Nebuleon"
-supported_extensions = "smc|fig|sfc|gd3|gd7|dx2|bsx|swc"
-corename = "Snes9x 2005"
+display_name = "SNES / Super Famicom (Snes9x2010)"
+authors = "Snes9x Team"
+supported_extensions = "smc|sfc|swc|fig"
+corename = "Snes9x"
manufacturer = "Nintendo"
categories = "Emulator"
systemname = "Super Nintendo Entertainment System"
database = "Nintendo - Super Nintendo Entertainment System|Nintendo - Sufami Turbo"
license = "Non-commercial"
permissions = ""
-display_version = "v1.36"
+display_version = "1.53"
supports_no_game = "false"
diff --git a/core_modules/snes9x2005.hmod/install b/core_modules/snes9x2010.hmod/install
index 6e0a007..6e0a007 100644
--- a/core_modules/snes9x2005.hmod/install
+++ b/core_modules/snes9x2010.hmod/install
diff --git a/core_modules/snes9x2005.hmod/readme.txt b/core_modules/snes9x2010.hmod/readme.txt
index 8187fad..c5de846 100644
--- a/core_modules/snes9x2005.hmod/readme.txt
+++ b/core_modules/snes9x2010.hmod/readme.txt
@@ -1,12 +1,15 @@
-=== SNES9x2005 core for RetroArch ===
+=== SNES9x2010 core for RetroArch ===
This module will add support for Super Famicom / Super Nintendo games to RetroArch
+Due to some bug in the core savestates do not work properly.
Available executables and arguments:
- /bin/snes <rom> <clover_args>
- runs "snes9x2005" core
+ runs "snes9x2010" core
+- /bin/snes10 <rom> <clover_args>
+ runs "snes9x2010" core
-Core by libretro, compiled by pcm
+Core by libretro (Lakka for Raspberry Pi 2/3)
Module by pcm
Hakchi module system by madmonkey
NES Mini shell integration by Cluster