added psx processing

This commit is contained in:
Rudis Muiznieks 2021-10-10 13:03:08 -05:00
parent 939329346d
commit 2747d385e9
Signed by: rudism
GPG Key ID: CABF2F86EF7884F9
2 changed files with 8 additions and 0 deletions

View File

@ -1 +1,3 @@
This is just a quick bash script I wrote to generate Lakka playlists from my ROM directories. Only supports specific systems that I care about, but could easily be extended to support more. May need some customization depending on your core preferences.
It supports MAME 2003 Plus rom naming based on the included json database.

View File

@ -88,6 +88,12 @@ case "$sys_type" in
core_name="Sega - MS/GG/MD/CD (Genesis Plus GX)"
db_name="Sega - Mega Drive - Genesis.lpl"
;;
'psx')
rom_ext="cue"
core_path="/tmp/cores/pcsx_rearmed_libretro.so"
core_name="Sony - PlayStation (PCSX ReARMed)"
db_name="Sony - PlayStation.lpl"
;;
*)
echo "Don't recognize system for roms in $sys_type directory..."
exit 1