2012-06-03 17:18:46 +00:00
|
|
|
# Mednafen PSX libretro
|
|
|
|
|
|
|
|
This is port of Mednafen PSX core to the libretro API.
|
2012-06-15 23:07:41 +00:00
|
|
|
It currently runs on Linux, OSX and possibly Windows.
|
2012-06-03 17:18:46 +00:00
|
|
|
|
|
|
|
## Running
|
|
|
|
|
2012-06-15 23:07:41 +00:00
|
|
|
To run this core, the "system directory" must be defined if running in RetroArch.
|
|
|
|
Here, the PSX BIOSes must be placed, $sysdir/SCPH550{0,1,2} for Japanese, NA and EU regions respectively.
|
|
|
|
Memory cards will also be saved to this system directory.
|
2012-06-03 17:18:46 +00:00
|
|
|
|
|
|
|
## Loading ISOs
|
|
|
|
|
2012-06-15 07:29:22 +00:00
|
|
|
Mednafen differs from other PS1 emulators in that it reads a .cue sheet that points to an .iso/.bin whatever.
|
2012-06-03 17:18:46 +00:00
|
|
|
If you have e.g. <tt>foo.iso</tt>, you should create a foo.cue, and fill this in:
|
|
|
|
|
|
|
|
FILE "foo.iso" BINARY
|
|
|
|
TRACK 01 MODE1/2352
|
|
|
|
INDEX 01 00:00:00
|
|
|
|
|
2012-06-03 17:19:13 +00:00
|
|
|
After that, you can load the <tt>foo.cue</tt> file as a ROM.
|
2012-06-15 07:29:22 +00:00
|
|
|
Note that this is a dirty hack and will not work on all games.
|
|
|
|
Ideally, make sure to use rips that have cue-sheets.
|
2012-06-03 17:18:46 +00:00
|
|
|
|