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-02-21 21:52:33 +0300
committerpcm720 <pcm720@gmail.com>2017-02-21 21:52:33 +0300
commit5e986358ebc807a7801349e0326dd1d5b7c48293 (patch)
tree1251dddecd2cd15599d43744ac1c65616f3815cc /core_modules
parentc748d98a43d8389e2158ccbb1c000e363e0c9a24 (diff)
Fixed FDS loading, a lot of small fixes, added extra core modules, updated README.md
Diffstat (limited to 'core_modules')
-rwxr-xr-xcore_modules/fb_alpha.hmod/etc/libretro/info/fb_alpha_libretro.info (renamed from core_modules/fb_alpha.hmod/etc/libretro/info/fbalpha_libretro.info)0
-rw-r--r--core_modules/fb_alpha.hmod/readme.txt3
-rwxr-xr-xcore_modules/fb_alpha_cps2.hmod/etc/libretro/info/fb_alpha_cps2_libretro.info (renamed from core_modules/fb_alpha_cps2.hmod/etc/libretro/info/fbalpha2012_cps2_libretro.info)0
-rw-r--r--core_modules/fb_alpha_cps2.hmod/readme.txt3
-rw-r--r--core_modules/snes9x2010.hmod/etc/libretro/info/snes9x2010_libretro.info (renamed from core_modules/snes9x2010.hmod/etc/libretro/info/snes9x_libretro.info)2
-rwxr-xr-xcore_modules/use_nestopia.hmod/bin/nes6
-rw-r--r--core_modules/use_nestopia.hmod/install4
-rw-r--r--core_modules/use_nestopia.hmod/readme.txt13
8 files changed, 28 insertions, 3 deletions
diff --git a/core_modules/fb_alpha.hmod/etc/libretro/info/fbalpha_libretro.info b/core_modules/fb_alpha.hmod/etc/libretro/info/fb_alpha_libretro.info
index 8e98b4c..8e98b4c 100755
--- a/core_modules/fb_alpha.hmod/etc/libretro/info/fbalpha_libretro.info
+++ b/core_modules/fb_alpha.hmod/etc/libretro/info/fb_alpha_libretro.info
diff --git a/core_modules/fb_alpha.hmod/readme.txt b/core_modules/fb_alpha.hmod/readme.txt
index 41d20ac..4ee00cb 100644
--- a/core_modules/fb_alpha.hmod/readme.txt
+++ b/core_modules/fb_alpha.hmod/readme.txt
@@ -1,6 +1,7 @@
=== Final Burn Alpha core for RetroArch ===
-This module will add support for Atari 2600 games to RetroArch
+This module will add support for various arcade games to RetroArch
+The BIOS files must be inside the game directory.
Available executables and arguments:
- /bin/fba <rom> <clover_args>
diff --git a/core_modules/fb_alpha_cps2.hmod/etc/libretro/info/fbalpha2012_cps2_libretro.info b/core_modules/fb_alpha_cps2.hmod/etc/libretro/info/fb_alpha_cps2_libretro.info
index 8ff6b6d..8ff6b6d 100755
--- a/core_modules/fb_alpha_cps2.hmod/etc/libretro/info/fbalpha2012_cps2_libretro.info
+++ b/core_modules/fb_alpha_cps2.hmod/etc/libretro/info/fb_alpha_cps2_libretro.info
diff --git a/core_modules/fb_alpha_cps2.hmod/readme.txt b/core_modules/fb_alpha_cps2.hmod/readme.txt
index d63ce5d..8b81067 100644
--- a/core_modules/fb_alpha_cps2.hmod/readme.txt
+++ b/core_modules/fb_alpha_cps2.hmod/readme.txt
@@ -1,6 +1,7 @@
=== Final Burn Alpha CPS2 core for RetroArch ===
-This module will add support for Atari 2600 games to RetroArch
+This module will add support for CP System II arcade games to RetroArch
+The BIOS files must be inside the game directory
Available executables and arguments:
- /bin/cps2 <rom> <clover_args>
diff --git a/core_modules/snes9x2010.hmod/etc/libretro/info/snes9x_libretro.info b/core_modules/snes9x2010.hmod/etc/libretro/info/snes9x2010_libretro.info
index d7b3eb9..ecf195b 100644
--- a/core_modules/snes9x2010.hmod/etc/libretro/info/snes9x_libretro.info
+++ b/core_modules/snes9x2010.hmod/etc/libretro/info/snes9x2010_libretro.info
@@ -1,4 +1,4 @@
-display_name = "SNES / Super Famicom (Snes9x)"
+display_name = "SNES / Super Famicom (Snes9x2010)"
authors = "Snes9x Team"
supported_extensions = "smc|sfc|swc|fig"
corename = "Snes9x"
diff --git a/core_modules/use_nestopia.hmod/bin/nes b/core_modules/use_nestopia.hmod/bin/nes
new file mode 100755
index 0000000..2289bf9
--- /dev/null
+++ b/core_modules/use_nestopia.hmod/bin/nes
@@ -0,0 +1,6 @@
+#!/bin/sh
+if [ ! -f /etc/libretro/system/disksys.rom ]; then
+ cp -f /usr/share/kachikachi/fds_bios.bin /etc/libretro/system/disksys.rom
+fi
+
+exec retroarch-clover nestopia "$@" --ra-allow-crt
diff --git a/core_modules/use_nestopia.hmod/install b/core_modules/use_nestopia.hmod/install
new file mode 100644
index 0000000..6e0a007
--- /dev/null
+++ b/core_modules/use_nestopia.hmod/install
@@ -0,0 +1,4 @@
+transfer_default
+chmod +x $rootfs/bin/*
+chmod +x $rootfs/usr/bin/*
+return 1
diff --git a/core_modules/use_nestopia.hmod/readme.txt b/core_modules/use_nestopia.hmod/readme.txt
new file mode 100644
index 0000000..4cf6952
--- /dev/null
+++ b/core_modules/use_nestopia.hmod/readme.txt
@@ -0,0 +1,13 @@
+=== Use Nestopia instead of FCEUmm ===
+
+This module will patch /bin/nes file to use Nestopia as the only NES emulator (except kachikachi)
+
+Available executables and arguments:
+- /bin/nes <rom> <clover_args>
+ runs "nestopia" core
+
+Core by libretro
+Module by pcm
+Hakchi module system by madmonkey
+NES Mini shell integration by Cluster
+(c) 2016-2017