Emulation: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
(True)
 
(394 intermediate revisions by 15 users not shown)
Line 1: Line 1:
[[Category:Software]]
{{Boxwarning2|content='''This wiki page is temporally under rebuilding''', the previous content has been splitted and moved to: '''[[PS1 Emulation]], [[PS2 Emulation]], [[PSP Emulation]]'''<br>Now is going to be repurposed as an introduction to general emulation concepts and as a wiki navigation node to link to other relates pages, if you want to collaborate join the {{talk}}}}
For backwards- and crossproduct compatibility, several files in dev_flash are available/used.
----


== ps1emu ==
=Introduction=
Note: not available in early Tool/DECR and Debug/DEX firmwares (does not have dev_flash/ps1emu or ps2emu folder. dev_flash/vsh/etc/version.txt & index.dat say: ¨ps1emu:NA@NA: ps2emu:NA@NA: ps2gxemu:NA@NA: emerald:NA@NA: bdp:NA@NA:¨).


=== Files ===
=Links=
  ps1_emu.self      (1.02++)
*[[PS1 Emulation]]
  ps1_netemu.self  (1.70++)
*[[PS1 Savedata]]
  ps1_newemu.self  (2.10++)
*[[PS1 Classics Emulator Compatibility List]]
  ps1_rom.bin      (2.10++)  CRC32: D5FF6273 / CRC16: 111D (file is same as in 4.11 and all versions in between)
*[[PS2 Emulation]]
*[[PS2 Savedata]]
*[[PS2 Classics Emulator Compatibility List]]
*[[PSP Emulation]]
*[[PSP Savedata]]
*[[PSP Emulator Compatibility List]]
*Etc... ISO.BIN.ENC, ISO.BIN.EDAT, savedata formats


* 1.70:
=XMB settings related with emulators=
**Added the ability to play original PlayStation format games downloaded from the PlayStation Store.
<div style="float:right">[[File:XMB PS1PS2PSP game settings.jpg|400px|thumb|right|XMB game settings related with PS1, PS2, PSP emulators]]</div>
**Added rumble functionality for USB accessories which support it when playing PS2 games.
See the info in the official [http://manuals.playstation.net/document/en/ps3/current/settings/gamesettings.html#2434 user guide] and some [http://uk.ps3.ign.com/articles/793/793775p1.html samples]
**Saved data from PlayStation format software now usable on both PSP and PS3 systems.
**Backwards compatibility for PS1 and PS2 games was improved.


* 2.10:
*In [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PS/PS2 Upscaler]''' (added since firmware [[1.80_CEX|1.80]], stored in '''[[XRegistry.sys]]/setting/game/emuUpConvert''')
**Users can now play PlayStation game discs on a PSP with remote play (this feature was not announced).
**'''[Off]''' - Disable upscaled output.
**Backwards compatibility for PS1 and PS2 games was improved (Update was also unannounced but evident in Sony's backwards compatibility search site).
**'''[Normal]''' - Upscale and display at a size that matches the screen size (keep 4:3 aspect ratio)
**'''[Full]''' - Upscale and display at full screen by changing proportions and stretching the image (to widescreen)


Note: since 2.10++ all 3 ps1 emulators, ps1_emu.self, ps1_netemu.self, ps1_newemu.self uses the since then added ps1_rom.bin biosfile.
*In [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PS/PS2 Smoothing]''' (added since firmware [[1.80_CEX|1.80]], stored in '''[[XRegistry.sys]]/setting/game/emuSmoothing''')
**'''[Off]''' - Disable smoothing
**'''[On]''' - Use smoothing to reduce the roughness of the displayed image (note: when titles that support progression scan have this option turned on, they revert back to 480p with no alterations)


==== arguments ====
*In [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - Screen Mode]''' (stored in '''[[XRegistry.sys]]/setting/game/pspemuViewmode''')
**Sets the display size of the screen during gameplay. This setting can only be used when outputting video to an HD TV
**'''[Normal]'''
**'''[Full Screen]'''


From multiman.cpp source (line 2502) http://code.google.com/p/multiman/source/browse/source/multiman.cpp?r=8c5b662f1c54d4f95f646949cae3d033b15b1a2e
*In [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - 3D Display]''' (stored in '''[[XRegistry.sys]]/setting/game/pspemu3dDisplay''' and '''pspemu3dDepthAdjust''')
**Sets whether or not to display Images in 3D.You can also adjust the depth of 3D images. This setting can only used when playing a stereoscopic 3D game using a 3D TV
**'''[Off]'''
**'''[On]'''
***'''[7]''' (Strong)
***'''[6]'''
***'''[5]''' (Normal)
***'''[4]'''
***'''[3]'''
***'''[2]'''
***'''[1]''' (Weak)


{
*In [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - Ad Hoc Mode Channel]''' (stored in '''[[XRegistry.sys]]/setting/game/pspemuAdhocModeCh''')
char* launchargv[9];
**Set a channel for use in ad hoc mode. Choose the same channel as the person you want to connect with
memset(launchargv, 0, sizeof(launchargv));
**'''[Automatic]'''
launchargv[0] = (char*)malloc(strlen(mc1)+1); strcpy(launchargv[0], mc1);
**'''[1]'''
launchargv[1] = (char*)malloc(strlen(mc2)+1); strcpy(launchargv[1], mc2);
**'''[6]'''
launchargv[2] = (char*)malloc( 5); strcpy(launchargv[2], "0082");
**'''[11]'''
launchargv[3] = (char*)malloc( 5); strcpy(launchargv[3], "1600");
launchargv[4] = (char*)malloc(10); strcpy(launchargv[4], app_path);
launchargv[5] = (char*)malloc( 2); strcpy(launchargv[5], "1");
launchargv[6] = (char*)malloc( 2); strcpy(launchargv[6], "2"); // full screen on/off = 2/1
launchargv[7] = (char*)malloc( 2); strcpy(launchargv[7], "1"); // smoothing on/off = 1/0
launchargv[8] = NULL;
unload_modules();
exitspawn((const char*) "/dev_flash/ps1emu/ps1_netemu.self", (char* const*)launchargv, NULL, NULL, 0, 1001, SYS_PROCESS_PRIMARY_STACK_SIZE_1M);
}
else
{
char* launchargv[7];
memset(launchargv, 0, sizeof(launchargv));
launchargv[0] = (char*)malloc(strlen(mc1)+1); strcpy(launchargv[0], mc1);
launchargv[1] = (char*)malloc(strlen(mc2)+1); strcpy(launchargv[1], mc2);
launchargv[2] = (char*)malloc( 5); strcpy(launchargv[2], "0082"); // region
launchargv[3] = (char*)malloc( 5); strcpy(launchargv[3], "1200");
launchargv[4] = (char*)malloc( 2); strcpy(launchargv[4], "1"); // full screen on/off = 2/1
launchargv[5] = (char*)malloc( 2); strcpy(launchargv[5], "1"); // smoothing on/off = 1/0
launchargv[6] = NULL;
unload_modules();
exitspawn((const char*) "/dev_flash/ps1emu/ps1_emu.self", (char* const*)launchargv, NULL, NULL, 0, 1001, SYS_PROCESS_PRIMARY_STACK_SIZE_1M);
}


===== ps1_emu.self =====
*In [[XMB]] {{icon category settings}} ⇨ '''[Game Settings]''' ⇨ '''[PSP™ Remaster - Ad Hoc Mode]''' (stored in '''[[XRegistry.sys]]/setting/game/pspemuAdhocModeWlan''')
**Sets whether or not to use ad hoc mode over a wireless LAN
**'''[Off]'''
**'''[On]'''


{| class="wikitable"
<!--
|-
The setting "PSP EMU Menu" (with options: Off/On, and description: Enable/disable the options on XMB described above) doesnt appears on [[QA_Flagging#Debug_Settings_.28CEX.2FDEX.29]] and is not clear in which firmwares or PS3 models is supposed to appear
! 7 arguments !! Name !! Example !! Notes
-->
|-
| argv[0] || self starting location || dev_flash/ps1emu/ps1_emu.self ||
|-
| argv[1] || VM1-1 location || dev_hdd0/savedata/vmc/filename1.VM1 ||
|-
| argv[2] || VM1-2 location || dev_hdd0/savedata/vmc/filename2.VM1 ||
|-
| argv[3] || Regionnumber/TargetID || 0082 ||
|-
| argv[4] || unknown || 1200 ||
|-
| argv[5] || unknown || 1 ||
|-
| argv[6] || unknown || 0 ||
|-
|}


===== ps1_netemu.self =====
=Resolution=
== PS1 Native resolution ==
Games are always 4:3 with any resolution between 704x480 NTSC / 704x576 PAL (the bios initialisation screen) and lower:
* Horizontal: 256 (rare e.g. Dragon Warrior VII), 320, 368 (occasionally 384 e.g. SF Zero 3 but not X-Men vs SF which was shrunk to 368), 512, 576, 600, 640 or 704
* Vertical: 240 (NTSC), 300 (PAL), 480 (NTSC), 576 (PAL)
Tekken 3 uses a strange pixel area of 384x480. Regardless of the screen area, the aspect ratio is still 4:3 for all PlayStation games.
Very common resolutions : 320x224 for NTSC and 320x256 for PAL.


{| class="wikitable"
|-
! 7 arguments !! Name !! Example !! Notes
|-
| argv[0] || self starting location || dev_flash/ps1emu/ps1_netemu.self ||
|-
| argv[1] || ISO.BIN.EDAT location || ||
|-
| argv[2] || unknown || ||
|-
| argv[3] || unknown || ||
|-
| argv[4] || unknown || ||
|-
| argv[5] || unknown || ||
|-
| argv[6] || unknown || ||
|-
|}


===== ps1_newemu.self =====
==PS2 Native Resolution==
Video output resolution: variable from 256x224 to 1280x1024 (not 1920x1080) pixels.


{| class="wikitable"
{{Reverse engineering}}<noinclude>
|-
[[Category:Main]]
! 9 arguments !! Name !! Example !! Notes
</noinclude>
|-
| argv[0] || self starting location || dev_flash/ps1emu/ps1_newemu.self ||
|-
| argv[1] || VM1-1 location || dev_hdd0/savedata/vmc/filename1.VM1 ||
|-
| argv[2] || VM1-2 location || dev_hdd0/savedata/vmc/filename2.VM1 ||
|-
| argv[3] || Regionnumber/TargetID || 0082 ||
|-
| argv[4] || unknown || 600 ||
|-
| argv[5] || unknown || null/empty ||
|-
| argv[6] || unknown || 1 ||
|-
| argv[7] || unknown || 2 ||
|-
| argv[8] || unknown || 2 ||
|-
|}
 
==== hashes ====
 
===== ps1_emu.self =====
{| border="1" cellspacing="0" cellpadding="5" border="#999" class="wikitable sortable" style="border:1px solid #999; border-collapse: collapse;"
|- bgcolor="#cccccc"
|-
! FW !! MD5 !! Note
|-
| 1.02 || c656b842d872e0815d2aaad026908da3
|-
| 1.10 || 5e2282040a9eb7730b62eb96f21a6f94
|-
| 1.11 || 54a8c4b3466c0165a4b170fd83b4d1e4
|-
| 1.30 || 72d19068a9479ee6b6757806353e6c3d
|-
| 1.31 || 044da58856359c94bb92e28712ce0bab
|-
| 1.32 || 7061d1989c98553a414c19a6a46f61ef
|-
| 1.50 || 300ee8e8b128b29cd87b10658571e657
|-
| 1.51 || 2934a8d0d0886665666d4ea2db9f7af2
|-
| 1.54 || 7bdaf16ad21f16d9410aca13a294251d
|-
| 1.60 || bf39536e7aea712a532cffd08c9605b8
|-
| 1.70 || d83eca64a8529821a13b388341d39b14
|-
| 1.70 Debug/DEX || b094ea054830d49f8ead4d4adda7b2bc
|-
| 1.80 || 3695804dae4bc106a0830a9485aae7a9
|-
| 1.80 Debug/DEX || 233cc0e9b12510ca0dc51b5df50e6bd6
|-
| 1.81 || a5c0c2b4764b0cbda17381734ee95358
|-
| 1.82 || aeadbdc9d923ee32f6ad706638725cf3
|-
| 1.90 || 8ab19e6b87e81e04b5b99fd5a6cf48fd
|-
| 1.92 || 19400edd711c6c1fe9be3a6f1221a985
|-
| 1.92 Debug/DEX || 3caa7ef05bb0d728a3511c6497e4c8c3
|-
| 1.93 || aa33a9426b351699ff68fead221982f3
|-
| 1.94 || da4f0a9a7f57424c4b0eb269f78a5159
|-
| 2.00 || c4677412d54726cba59901fbafff7d38
|-
| 2.00 Debug/DEX || f5509b391ded1d4c254574d73768f65c
|-
| 2.01 || 4ef410f7b5ada86d10394aea087cdcde
|-
| 2.10 || 6451118515eb87fe9d3ce5d465d28a12
|-
| 2.10 Debug/DEX || a434b978f24430247a03c5bba271e3c0
|-
| 2.15 Debug/DEX || 5d4236e27aa89e50791e6faa66c79c3f
|-
| 2.16 || f2f1f98e45dd2b3b71e71b52ab1c9615
|-
| 2.17 || c47bc00aee4b8f710e4e9ff050d0296a
|-
| 2.17 Debug/DEX || a1f3382ad0135caed85c19cccb1178b8
|-
| 2.20 || fd0e3694d0374e29e22db6353b464023
|-
| 2.20 Debug/DEX || 204f3e5dccf7c97d9af0a87a8f7d0357
|-
| 2.30 || cd6a4f270095038630359c34b77e236c
|-
| 2.30 Debug/DEX || f3cac1526a389698750f4bf56c68bc89
|-
| 2.35 || d498c31a9c4c3f0516d7cc76d016a2e7
|-
| 2.36 || 08761183c9033e206e01d23311a0e509
|-
| 2.36 Debug/DEX || 68f66590a6158553dbac68bd571cad9b
|-
| 2.40 || b9eb72f6c206b63f3fd7798e3bdbceef
|-
| 2.40 Debug/DEX || 6e84da787764c8705da49f88b5d30dc0
|-
| 2.41 || dc19c9d04779efb3d50b56db4014977d
|-
| 2.41 Debug/DEX || e039699f3ef78ba27da3bcb753e562d6
|-
| 2.42 || 089c0f8f7acef16304535a68c4f81396
|-
| 2.42 Debug/DEX || 782f2842e962953902a06d15e75dbb59
|-
| 2.43 || 39ddd13267ffd5a525b78faf4a4755e2
|-
| 2.50 || cfcc49badf8f70591f1cf2941cda9047
|-
| 2.52 || 310fa01a09c8af7d119cd248a61ffac0
|-
| 2.52 Debug/DEX || 00920acc54ce523a831cae5edb6585f8
|-
| 2.53 || 6b7de028cf362575451790a31ce4d391
|-
| 2.53 Debug/DEX || 9acaa6b97a9b8c407f1ef0c8d1526b02
|-
| 2.60 || 9a34496d1dd92b150e8c03388d1aa856
|-
| 2.60 Debug/DEX || 5ee911524e23974da25f2e1ef73b0fc3
|-
| 2.70 || 3aa6ab5140f666c23c5e4efdd988f374
|-
| 2.70 Debug/DEX || 2a4876d9214234839c2413fbedc66d63
|-
| 2.76 || 511d6b676cdceba3600de5ba465fd05e
|-
| 2.76 Debug/DEX || b04cdde6e4b8c9cdcf0324505c056389
|-
| 2.80 || c869d36800e9843a93fdf8e895f1239b
|-
| 3.00 || d630dd9e851ca3fc620a29ff87229cdf
|-
| 3.00 Debug/DEX || 600538836083b722c118e823fe0ce9b6
|-
| 3.01 || 875bd447fa910103dd24cf90b93df8a1
|-
| 3.01 Debug/DEX || 1ef3f962e69a972f91ff3b5e3ce26cd2
|-
| 3.10 || a0bfdcc73bc1e3ccb6ddf23e09d2c348
|-
| 3.10 Debug/DEX || 2710b3ddc32a2f05a035e6090b3e7d03
|-
| 3.15 || 0cac7feeea410fcf0316447ce90a4818
|-
| 3.15 Debug/DEX || d56ba64e17e893f6456febceaeb135a5
|-
| 3.21 || 93489fda874ac03adb125b874c6d4c3f
|-
| 3.21 Debug/DEX || 7b179af6ad526ac986df3ebd6c7828fa
|-
| 3.30 || 941bfbc36388cd9a317af7a8f7b0e369
|-
| 3.20 Debug/DEX || 958e5c97080bf71de37efc89ce96acf6
|-
| 3.40 || 9f4571a5bf3972d9be3070e1409c34a1
|-
| 3.41 BAD || 3f82776340844a790122baca413e5858
|-
| 3.41 FIX || 3f82776340844a790122baca413e5858
|-
| 3.41 Debug/DEX || 6e23a8facffbbe4d6ab8f398108d7241
|-
| 3.42 || 5e64ef4af2fd05dc59439a7cb513767e
|-
| 3.50 || 6d1afa5546e5cea928a9b1cd8f022411
|-
| 3.55 || 87a6f1845e7b623627448db09e1db413
|-
| 3.55 Debug/DEX || 1824c1ecf9d1b5ca492935ef594a448a
|-
| 3.56 BAD || cb4ac012f62f43b7ead5f63785e86827
|-
| 3.56 FIX || af4ebc9c12f7439289ebde7dbde80eea
|-
| 3.60 || 95e57c5bb3e9923c775f2ab390577e76
|-
| 3.61 || 96b18b567f3acc2903ff435d68b45df3
|-
| 3.65 || df89982c6247ebc5b4fdca57dd86c51f
|-
| 3.66 || 873b167ee01258dd9c74810acbcb7eec
|-
| 3.70 || 8a120644e3b4d23635887ca690a6aa77
|-
| 3.72 || 0bdff1c7ff965f7f60ddbe9a4adb7d0e
|-
| 3.73 || 1420e649a9a9b6387f675ca71ff5ec9c
|-
| 3.74 DEX || 4bc7a69a4986879809d5cd705ee01ac5
|-
| 4.00 || d17cdce2a9d101ad5cd7b52bce624c9d
|-
|}
 
===== ps1_netemu.self =====
{| border="1" cellspacing="0" cellpadding="5" border="#999" class="wikitable sortable" style="border:1px solid #999; border-collapse: collapse;"
|- bgcolor="#cccccc"
|-
! FW !! MD5 !! Note
|-
| 1.70 || bc2f923e733bb35211568bc021a6ba3b
|-
| 1.80 || bfab49b77c0ab1602c0351adb90459de
|-
| 1.81 || 1a7d9feae27ed65eeb65ec42d262a090
|-
| 1.82 || 7ce12ddf05c1a12de1940ec5cad00dfb
|-
| 1.90 || 571b154a66f9ba5e5c908fc0588da340
|-
| 1.92 || 96e5f33f75b6122cb43d06848d23a1a5
|-
| 1.93 || abd4320ed586777bdaee9975638db6ff
|-
| 1.94 || 5cccb786aad619cf65049b8ceb37fe44
|-
| 2.00 || cd9ce1e7096d07029db107a3369557db
|-
| 2.01 || fbadbe348ba2ff0424edf7a72a6f8cab
|-
| 2.10 || aa7cd946d36cdfc44fb827fe5d26dc47
|-
| 2.17 || 44cf7cca74628712b11a47b2328be9aa
|-
| 2.60 || 29e4c302a6411c48aff06ab976d789bd
|-
| 2.70 || 0aa4a5b1a74cf03e7a0be87aca6859b8
|-
| 2.76 || 37c5563fb77194bc1b18e8210d03a4e6
|-
| 3.00 || 3663392b6be24d9602121542b60b9976
|-
| 3.01 || bab7c89e240c18f8b5460418a77a60e7
|-
| 3.10 || 464c1647df9a1be080bfe49063b31a9b
|-
| 3.15 || f1f0e60f5a05db292d3089894c4445bd
|-
| 3.21 || 490403573e68ca798a3856f976f9182d
|-
| 3.30 || a55aa5d654a05e0a992c56f36fd2d4e7
|-
| 3.40 || 555a57d2494f879976ff36217fbf62db
|-
| 3.41 BAD || 1e28c61c6756856fab6fdb2f953672d8
|-
| 3.41 FIX || 1e28c61c6756856fab6fdb2f953672d8
|-
| 3.42 || 0976465bc64054a794e83ceca2137d5c
|-
| 3.50 || c45ae95868e1dc220cc8780ec368211d
|-
| 3.55 || 44a86f3981a1b51b7f621a459b5b4f9e
|-
| 3.56 BAD || b16054849c77716985ee0880be9b0251
|-
| 3.56 FIX || fa9ea14113762f8792ab12afa0a34420
|-
| 3.60 || b1f4f47cb1ad61d09205b8a11763a3bc
|-
| 3.61 || 276e8b1cd1ae156de1db22e04a3fe3ad
|-
| 3.65 || df89982c6247ebc5b4fdca57dd86c51f
|-
| 3.66 || 1b633f1031e183aa604c4bb540886c28
|-
| 3.70 || d74565bb016e8321ee5c07cc31f00e32
|-
| 3.72 || 3a169ae2cd72d87e3e7376bfb92c4f8c
|-
| 3.73 || 968078626ebf0b4131c305724deddd20
|-
| 3.74 DEX || e72a959882adb3a2ca524e1a870780eb
|-
| 4.00 || 4aa12509355a01f9d271230fb9ae0d0d
|-
|}
 
===== ps1_newemu.self =====
{| border="1" cellspacing="0" cellpadding="5" border="#999" class="wikitable sortable" style="border:1px solid #999; border-collapse: collapse;"
|- bgcolor="#cccccc"
|-
! FW !! MD5 !! Note
|-
| 2.10 || 421812e9f1894e31d8741f945cd1c1f7
|-
| 2.17 || a83914a0432f781470186d4786e8ccd2
|-
| 2.60 || bf11b806a4aff3dbfbf5dc08efe7320e
|-
| 2.70 || b08f853fd20a73179a07887c3d4365cc
|-
| 2.76 || d8b35b2fc2ff065bae16448fb56c7c05
|-
| 3.00 || cb015dec30c54dfda6dd305f5785a677
|-
| 3.01 || fadcfd75e85c95b412906464cbc288bb
|-
| 3.10 || fc195cf6e47f8a5a76277f7ef9d1922a
|-
| 3.15 || deb1c134f04560a8403b2008e2ecde75
|-
| 3.21 || b72bc165662beb2ff95cf348c5227439
|-
| 3.30 || 427b6e67e3ff4238003e6c479b27d4cc
|-
| 3.40 || 0466721e81870594fcc4d155708d919e
|-
| 3.41 BAD || 90f15cb10f32c35c144b13dea84bca0a
|-
| 3.41 FIX || 90f15cb10f32c35c144b13dea84bca0a
|-
| 3.42 || 5c423b64d286beb1740e7af39d151416
|-
| 3.50 || b8996b41e5c26a4add1644191fd22624
|-
| 3.55 || aaf9f916146274d684205f3db893e45a
|-
| 3.56 BAD || b31b881e6bc5e3447ae6617689d0a6d5
|-
| 3.56 FIX || 396523d47b6f27977b4082ca95c41fc5
|-
| 3.60 || f0f90774673e48b0562c636aa620bcd2
|-
| 3.61 || 09397b87e80891db831cb54daa2bc4a3
|-
| 3.65 || 27302089f7baa6895e0f5bc9fd1d8c55
|-
| 3.66 || d74565bb016e8321ee5c07cc31f00e32
|-
| 3.70 || e887a4e675f7f8cfb52b32c888278379
|-
| 3.72 || 18ee6a06499c14642b00a6b9b8903edd
|-
| 3.73 || 35e2d95313808aa89ad7564636ed9a03
|-
| 3.74 DEX || 05f018b778d3aaaa36386b5a593fb525
|-
| 4.00 || 509b7b548547e354934d569bc7b38fca
|-
|}
 
==== Savegames ====
Location: /dev_hdd0/savedata/vmc <br />
Note: capitalisation of filename is important: name it xxx.VM1 instead of xxxx.vm1 (e.g. Internal Memory Card.VM1 for PSX/PSone, Internal Memory Card.VM2 for PS2/PStwo)
 
The .VMx files appear to be raw memory card data:
* [http://www.ps3devwiki.com/wiki/Game_Saves#Virtual_Memory_Card_PS1_.28.VM1.29 .VM1 Playstation 1 Memory cards] can be edited by [http://www.ps3devwiki.com/files/devtools/MemcardRex/ MemcardRex]<!--// [[http://www.mediafire.com/?wf82vc4oeb932w3 MemcardRex v1.5]] //-->
* [http://www.ps3devwiki.com/wiki/Game_Saves#Virtual_Memory_Card_PS2_.28.VM2.29 .VM2 Playstation 2 Memory cards] can be edited by [http://www.ps3devwiki.com/files/devtools/mymc/ mymc]<!--// [[http://www.csclub.uwaterloo.ca:11068/mymc/ mymc]] //-->
 
=== Regioning ===
{|class="wikitable"
|-
! PS1<br />DiscID's !! PS1<br />Region !! PS3<br />SKU suffix !! PS3<br />TargetID's
|-
| SLPS<br />SLPM<br />SIPS<br />PAPX<br />PCPX || [http://en.wikipedia.org/wiki/NTSC-J NTSC-J]<br />(Japan&nbsp;and&nbsp;Asia) || 00 (Japan)<br />05 (South Korea)<br />06 (Singapore / Malaysia)<br />07 (Taiwan)<br />09 (China)<br />12 (Hong Kong) || 0x83<br />0x86<br />0x8A<br />0x8B<br />0x8D
|-
| SLUS<br />SCUS<br />SCUD<br />SLUD<br />PBPX<br />LSP || [http://en.wikipedia.org/wiki/NTSC NTSC-U/C]<br />(North&nbsp;America) || 01 (North America)<br />11 (Mexico) || 0x84<br />0x88
|-
| SLES<br />SCES<br />SCED<br />SLED || [http://en.wikipedia.org/wiki/PAL PAL]<br />(Europe&nbsp;and&nbsp;Oceania) || 02 (Australia / New Zealand)<br />03 (U.K. / Ireland)<br />04 (Europe / Middle East / Africa)<br />08 (Russia / India) || 0x89<br />0x87<br />0x85<br />0x8C
|-
|}
==== DiscID explained ====
* The first letter indicates the storage format (always S=CD/DVD for PSX/PSone and PS2/PStwo, for PS3 it is B=Bluray).
* The second letter indicates if the game is first party (C = Sony), or licensed from third party (L = others).
* The third letter indicates: A=Asia, P or J=Japan, U=United States, or E=Europe (K = HongKong).
* The last letter indicates the type: D = Demo, S = Full Retail Game, M = ?.
Note that for some third party games, Sony may take it and repackage with appropriate material for other territories, thus the game become first party as well.
 
DiscID ([[Productcode]]) reference: http://sonyindex.com/ <br />
e.g. PS3 Bluray:
Japan    [BCAS, BCJS, BLAS, BLJM, BLJS]
US      [BCUS, BLUS, BCUD]
EU      [BCES, BLES, BCED]
HongKong [BCKS, BLKS, BCKD]
 
Sidestep, PSVita uses PCSF / PCSB : http://forum.trophies-ps3.de/spiele-and-trophaeen/90720-die-vita-pcsf-pcsb-liste.html (Sony = f = first party, B = backparty release ?)
 
===== DiscID ([[Productcode]]) in ps1_emu =====
 
{|class="wikitable sortable"
|-
! ID in emu.self !! Region !! DiscID !! Title !! unk !! checksum !! flags !! FW
|-
| SLPS_023.64 || Jap || SLPS-02364 || Chrono Cross [Disc1of2] || 1 || 40b572aa || 0000001500000003 || 1.02++
|-
| SLPS_023.65 || Jap || SLPS-02365 || Chrono Cross [Disc2of2] || 1 || 55e87206 || 0000001500000003 || 1.02++
|-
| SLPM_860.28 || Jap || SLPM-86028 || Final Fantasy IV || 3 || 770f6f03 || 00000004000000c8 || 1.02++
|-
| SLPS_000.13 || Jap || SLPS-00013 || Raiden Project || 3 || 9dc97376 || 00000004000000c8 || 1.02++
|-
| SLPS_023.61 || Jap || SLPS-02361 || Touge Max G || 1 || c1556eb3 || 0000000100000001 || 1.02++
|-
| SLPS_013.43 || Jap || SLPS-01343 || Rebus || 1 || 2b2270f6 || 0000000100000080 || 1.02++
|-
| SLPS_007.70 || Jap || SLPS-00770 || Final Fantasy Tactics || 1 || ba3573e7 || 0000000100000010 || 1.02++
|-
| SLPS_017.72 || Jap || SLPS-01772 || Squaresoft Data Disc 2 [Chocobo no Fushigi na Dungeon 2 Bonus Disc] || 2 || 3e6e7597 || 00000007fffffa00 || 1.02++
|-
| SLPS_035.01 || Jap || SLPS-03501 || Final Fantasy II [Final Fantasy I+II - Premium Package] || 1 || 47146c30 || 0000001500000003 || 1.02++
|-
| SLPS_035.02 || Jap || SLPS-03502 || Final Fantasy II || 1 || 32256c55 || 0000001500000003 || 1.02++
|-
| SLPS_023.71 || Jap || SLPS-02371 || Fever - Sankyo Koushiki Pachinko Simulation || 1 || d59774b8 || 0000000100000020 || 1.02++
|-
| SLPS_007.50 || Jap || SLPS-00750 || Xevious 3D-G+ || 1 || edad71d8 || 0000000100000040 || 1.02++
|-
| SLPS_007.00 || Jap || SLPS-00700 || Final Fantasy VII [Disc1of3] || 1 || 14dd7664 || 0000001500000003 || 1.02++
|-
 
 
| SLPS_007.01 || Jap || SLPS-00701 || Final Fantasy VII [Disc2of3] || 1 || 498a7601 || 0000001500000003 ||
|-
| SLPS_007.02 || Jap || SLPS-00702 || Final Fantasy VII [Disc3of3] || 1 || 78eb7645 || 0000001500000003 ||
|-
 
 
| SLPS_008.30 || Jap || SLPS-00830 || Ace Combat 2 || 1 || 9ea572ab || 0000001500000003 || 1.02++
|-
| SLPM_862.26 || Jap || SLPM-86226 || Glay Station - Glay Complete Works [Disc1of2] || 1 || d9fb6e40 || 00000007fffff700 || 1.02++
|-
| SLPS_034.95 || Jap || SLPS-03495 || Kamen Rider Ryuki || 3 || 76fa6c8f || 0000000800000001 || 1.02++
|-
| SLPM_861.62 || Jap || SLPM-86162 || World Soccer - Jikkyou Winning Eleven 3 - Final Version || 1 || 171a6e8c || 0000000300000708 || 1.02++
|-
| SLPM_861.62 || Jap || SLPM-86162 || World Soccer - Jikkyou Winning Eleven 3 - Final Version || 1 || 3b716e92 || 0000000300000708 || 1.02++
|-
| SCPS_100.92 || Jap || SCPS-10092 || Doko Demo Issyo || 1 || 985c6d1c || 0000000100010000 || 1.02++
|-
| SLPM_870.56 || Jap || SLPM-87056 || World Soccer - Winning Eleven 2002 || 1 || c18c6d68 || 0000000100010000 || 1.02++
|-
| SLPS_014.34 || Jap || SLPS-01434 || 3D Kakutou Tsukuru || 1 || 33196d96 || 0000000100010000 || 1.02++
|-
| SLPS_021.08 || Jap || SLPS-02108 || Tron ni Kobun [Disc1of2] || 2 || fee172c6 || 0000000a00000000 || 1.02++
|-
| SLPS_021.09 || Jap || SLPS-02109 || Tron ni Kobun [Disc2of2] || 2 || ecb1743a || 0000000a00000000 || 1.02++
|-
| SLPS_022.27 || Jap || SLPS-02227 || Simple 1500 Series Vol.014 - The Block Kuzushi || 1 || 8212727f || 0000000100010000 || 1.02++
|-
| SLPS_027.36 || Jap || SLPS-02736 || Senkai Taisen - TV Animation Senkaiden Houshin Engi yori || 1 || 24bc6f0e || 0000000100010000 || 1.02++
|-
| SLPS_000.40 || Jap || SLPS-00040 || Tekken || 1 || 3a6f72f5 || 0000000100010000 || 1.02++
|-
| SLPS_014.21 || Jap || SLPS-01421 || Kagero - Kokumeikan Shinshou || 1 || 5e466c72 || 0000000100010000 || 1.02++
|-
| SLPM_864.90 || Jap || SLPM-86490 || Muscle Ranking - Kinniku Banzuke - Road to Sasuke || 1 || e94570d4 || 0000000100010000 || 1.02++
|-
| SLPS_007.52 || Jap || SLPS-00752 || Pachi-Slot Kanzen Kouryaku 1 - Universal Koushiki Guide Vol.1 || 1 || 40a7270 || 0000000100010000 || 1.02++
|-
| SLPS_003.04 || Jap || SLPS-00304 || Noel - Not Digital [Special Edition] [Disc1of2] || 1 || 2d507191 || 0000000100010000 || 1.02++
|-
| SLPS_003.04 || Jap || SLPS-00304 || Noel - Not Digital [Special Edition] [Disc1of2] || 1 || b4570c7 || 0000000100010000 || 1.02++
|-
| SLPS_003.05 || Jap || SLPS-00305 || Noel - Not Digital [Special Edition] [Disc2of2] || 1 || 2f7c6d6c || 0000000100010000 || 1.02++
|-
| SLPM_860.97 || Jap || SLPM-86097 || Jikkyou Powerful Pro Yakyuu '98 Kaimaku-ban || 1 || c15f7120 || 0000000100010000 || 1.02++
|-
| SLPM_860.98 || Jap || SLPM-86098 || Metal Gear Solid [Pilot] [Jikkyou Powerful Pro Yakyuu '98 Kaimakuban - Bonus Disc] || 1 || eb946d0a || 0000000100010000 || 1.02++
|-
| SLPS_016.09 || Jap || SLPS-01609 || Million Classic [Disc1of2] || 1 || 60f06ea0 || 0000000100010000 || 1.02++
|-
| SLPS_016.10 || Jap || SLPS-01610 || Million Classic [Disc2of2] || 1 || e90a6ce3 || 0000000100010000 || 1.02++
|-
| SLPS_024.12 || Jap || SLPS-02412 || Puyo Puyoon - Car-Kun to Issho || 1 || ab3b70e7 || 0000000100010000 || 1.02++
|-
| SLPS_025.70 || Jap || SLPS-02570 || Kidou Senshi Gundam - Giren no Yabou - Zeon no Keifu [Disc1of2]  || 2 || c47c6d81 || 0000000a00000000 || 1.02++
|-
| SLPS_025.71 || Jap || SLPS-02571 || Kidou Senshi Gundam - Giren no Yabou - Zeon no Keifu [Disc2of2]  || 2 || 1ede6edc || 0000000a00000000 || 1.02++
|-
| SLPS_016.83 || Jap || SLPS-01683 || Simple 1500 Series Vol.005 - The Igo || 1 || 7ffa79b2 || 0000000100010000 || 1.02++
|-
| SLPS_010.08 || Jap || SLPS-01008 || Einhander || 2 || a72b7071 || 0000000100010000 || 1.02++
|-
| SLPS_023.68 || Jap || SLPS-02368 || Marvel vs. Capcom - Clash of the Super Heroes - EX Edition || 1 || 12e17661 || 0000000100010000 || 1.02++
|-
| SLPS_024.60 || Jap || SLPS-02460 || Koudelka [Disc1of4] || 2 || aa1473a6 || 0000000a00000000 || 1.02++
|-
| SLPS_024.61 || Jap || SLPS-02461 || Koudelka [Disc2of4] || 2 || 8cb57276 || 0000000a00000000 || 1.02++
|-
| SLPS_024.62 || Jap || SLPS-02462 || Koudelka [Disc3of4] || 2 || 344473b8 || 0000000a00000000 || 1.02++
|-
| SLPS_024.63 || Jap || SLPS-02463 || Koudelka [Disc4of4] || 2 || 689a72b4 || 0000000a00000000 || 1.02++
|-
| SCPS_101.36 || Jap || SCPS-10136 || Gunparade March || 1 || aa4070a9 || 0000000100010000 || 1.02++
|-
| SLPS_017.17 || Jap || SLPS-01717 || Bomberman || 1 || ead56ab7 || 0000000100010000 || 1.02++
|-
| SLPS_024.69 || Jap || SLPS-02469 || DX Jinsei Game III - The Game of Life || 1 || 302c70d1 || 0000000900000001 || 1.02++
|-
| SLPM_869.63 || Jap || SLPM-86963 || DX Jinsei Game IV - The Game of Life || 1 || aef26b24 || 0000000900000001 || 1.11+
|-
| SLPS_001.94 || Jap || SLPS-00194 || Wizard's Harmony || 1 || b01d7540 || 0000000c00000002 || 1.02++
|-
| SLPS_005.50 || Jap || SLPS-00550 || Shin Super Robot Taisen || 1 || 77327123 || 0000001000063fe1 || 1.02++
|-
| SLPS_005.50 || Jap || SLPS-00550 || Shin Super Robot Taisen || 1 || 505971b4 || 0000001000063fe1 || 1.02++
|-
| SLPS_007.87 || Jap || SLPS-00787 || Shin Super Robot Taisen [Special Edition] || 1 || cf9d72df || 0000001000063fe1 || 1.02++
|-
| SLPM_871.87 || Jap || SLPM-87187 || DX Jinsei Game V - The Game of Life || 1 || ed346cdc || 0000000900000001 || 1.02++
|-
| SLPM_863.81 || Jap || SLPM-86381 || Muscle Ranking - Kinniku Banzuke Vol.1 - Ore ga Saikyou no Otoko da! || 1 || f04b7147 || 000000101090c229 || 1.02++
|-
| SLPS_004.77 || Jap || SLPS-00477 || Wing Commander III - Heart of the Tiger [Disc1of4] || 1 || 448373e5 || 0000000d00000001 || 1.02++
|-
| SLPS_016.11 || Jap || SLPS-01611 || Mikagura Shoujo Tanteidan [Disc1of4] || 1 || 68ed73d3 || 0000000c00000004 || 1.02++
|-
| SLPM_862.68 || Jap || SLPM-86268 || Taikou Risshiden III || 1 || d046df5 || 0000000100010000 || 1.02++
|-
| SLPM_862.68 || Jap || SLPM-86268 || Taikou Risshiden III || 1 || 5af46e00 || 0000000100010000 || 1.02++
|-
| SLPS_017.74 || Jap || SLPS-01774 || Next Tetris, The || 1 || affd73f0 || 0000000100000001 || 1.02++
|-
| SLPS_005.55 || Jap || SLPS-00555 || Soul Edge || 1 || 9faf7086 || 00000005000000c8 || 1.02++
|-
| SLPM_863.17 || Jap || SLPM-86317 || J.League 1999 Perfect Striker || 1 || 4e437226 || 0000000600000064 || 1.02++
|-
| unknown ||  || ||  || 1 || cf07737f || 0000001400000004 || 1.02++
|-
 
 
| unknown ||  ||  || || 1 || 18fd70a4 || 0000000c00000004 ||
|-
| SLPS_017.60 || Jap || SLPS-01760 || Janpai Yuugi '99 - Tanuki no Kawazanyou || 1 || c24577b9 || 0000000c00000004 || 1.02++
|-
| SLPS_013.24 || Jap || SLPS-01324 || Thoroughbred Breeder - Sekai Seiha-hen || 1 || 5a7f712a || 0000000100000080 || 1.02++
|-
| SLPS_004.58 || Jap || SLPS-00458 || Simulation Zoo || 1 || 9f7d6e65 || 0000000100000200 || 1.02++
|-
| SLPS_008.31 || Jap || SLPS-00831 || Hatsukoi Barentain || 1 || b3127504 || 0000000c00000004 || 1.02++
|-
| SLPS_005.90 || Jap || SLPS-00590 || Voice Paradice Excella [Disc1of2] || 1 || c0d67577 || 0000000c00000004 || 1.02++
|-
 
 
| SLPS_018.80 || Jap || SLPS-01880 || Final Fantasy VIII [Disc1of4] || 1 || d8446e20 || 0000001500000003 ||
|-
| SLPS_018.81 || Jap || SLPS-01881 || Final Fantasy VIII [Disc2of4] || 1 || d4c76d1b || 0000001500000003 ||
|-
| SLPS_018.82 || Jap || SLPS-01882 || Final Fantasy VIII [Disc3of4] || 1 || 18126e07 || 0000001500000003 ||
|-
| SLPS_018.83 || Jap || SLPS-01883 || Final Fantasy VIII [Disc4of4] || 1 || 12376e34 || 0000001500000003 ||
|-
| SLPS_010.50 || Jap || SLPS-01050 || Namco Museum Encore || 1 || bdac756e || 0000001500000003 ||
|-
| SCPS_101.38 || Jap || SCPS-10138 || Bealphareth || 1 || 1d826df0 || 0000001500000003 ||
|-
| SLPS_012.99 || Jap || SLPS-01299 || Tail Concerto || 1 || e9a46c06 || 0000000100000080 ||
|-
| SLPS_018.49 || Jap || SLPS-01849 || Zen-Nippon Pro Wrestling - Ouja no Tamashii || 1 || e7bc6eee || 0000001500000003 ||
|-
| SLPS_028.44 || Jap || SLPS-02844 || Digimon World 2 || 1 || 72d47009 || 0000001500000003 ||
|-
| SLPS_001.96 || Jap || SLPS-00196 || Dai-4-Ji Super Robot Taisen S || 1 || a8db7169 || 0000001500000003 ||
|-
| SLPS_013.83 || Jap || SLPS-01383 || FIFA Road to World Cup '98 || 1 || 2e3872b6 || 0000001500000003 ||
|-
| SLPS_914.44 || Jap || SLPS-91444 || Armored Core - Master of Arena [PSone Books] [Disc1of2] || 1 || b9317410 || 0000001500000003 ||
|-
| SLPS_911.10 || Jap || SLPS-91110 || Armored Core - Project Phantasma [PlayStation the Best] || 1 || 6b187157 || 0000001500000003 ||
|-
| SLPS_012.22 || Jap || SLPS-01222 || BioHazard 2 [Disc1of2] || 1 || f5f773c5 || 0000001500000003 ||
|-
| SLPS_012.23 || Jap || SLPS-01223 || BioHazard 2 [Disc2of2] || 1 || 899673b3 || 0000001500000003 ||
|-
| SLPS_017.51 || Jap || SLPS-01751 || Elie no Atelier - Atelier Elie || 1 || bcdf6fa3 || 0000001500000003 ||
|-
| SLPS_911.80 || Jap || SLPS-91180 || Elie no Atelier - Atelier Elie [PlayStation the Best] || 1 || 8047091 || 0000001500000003 ||
|-
| SLPS_013.48 || Jap || SLPS-01348 || G-Darius || 1 || d59c6ed3 || 0000001500000003 ||
|-
| SCPS_913.25 || Jap || SCPS-91325 || Um Jammer Lammy [PSone Books] || 1 || 286070c5 || 0000001500000003 ||
|-
| SLPS_012.58 || Jap || SLPS-01258 || Yuukyuu Gensoukyoku 2nd Album || 1 || d1b173a8 || 0000001500000003 ||
|-
| SCPS_101.03 || Jap || SCPS-10103 || Robbit Mon Dieu || 1 || 6e516dad || 0000001500000003 ||
|-
| SLPM_862.47 || Jap || SLPM-86247 || Metal Gear Solid - Integral [Disc1of3] || 1 || 5ff06cad || 0000001500000003 ||
|-
| SLPM_862.48 || Jap || SLPM-86248 || Metal Gear Solid - Integral [Disc2of3] || 1 || e7796ded || 0000001500000003 ||
|-
| SLPM_862.49 || Jap || SLPM-86249 || Metal Gear Solid - Integral [Disc3of3] || 1 || 4a136c00 || 0000001500000003 ||
|-
| SLPS_012.00 || Jap || SLPS-01200 || Tomb Raider 2 || 1 || 805d73aa || 0000001500000003 ||
|-
| SCPS_100.03 || Jap || SCPS-10003 || Crime Crackers || 1 || ed04760d || 0000001500000003 ||
|-
| SCPS_100.93 || Jap || SCPS-10093 || Minna no Golf 2 || 1 || a0546cf8 || 0000001500000003 ||
|-
| SLPS_021.67 || Jap || SLPS-02167 || Echo Night #2 || 1 || e8336ff5 || 0000001500000003 ||
|-
| SLPS_006.17 || Jap || SLPS-00617 || Tomb Raider || 1 || d780729c || 0000001500000003 ||
|-
| SCPS_100.50 || Jap || SCPS-10050 || Poporogue || 1 || 50ec6c67 || 0000001500000003 ||
|-
| SCPS_100.50 || Jap || SCPS-10050 || Poporogue || 1 || d0606e35 || 0000001500000003 ||
|-
| SCPS_913.12 || Jap || SCPS-91312 || Poporogue [PSone Books] || 1 || fa176c5a || 0000001500000003 ||
|-
| SLPS_863.63 || Jap || ((SLPM-86363)) || Chaos Break || 1 || d40f7363 || 0000001500000003 ||
|-
| SLPS_006.77 || Jap || SLPS-00677 || F-1 Grand Prix '96 - Team Unei Simulation || 1 || 4ab472c3 || 0000001500000003 ||
|-
| SLPM_862.52 || Jap || SLPM-86252 || Dance Dance Revolution - 2nd Remix || 1 || 77ef6e45 || 0000001500000003 ||
|-
| SLPM_863.70 || Jap || SLPM-86370 || Dance Dance Revolution - 2nd Remix Append Club Version Vol.1 || 1 || 4f9170f4 || 0000001500000003 ||
|-
| SCPS_101.12 || Jap || SCPS-10112 || Popolocrois Monogatari II [Disc1of3] || 1 || 9d7e6dc3 || 0000001500000003 ||
|-
| SCPS_100.60 || Jap || SCPS-10060 || Rapid Racer || 1 || 4bca6fd6 || 0000001500000003 ||
|-
| SLPS_007.17 || Jap || SLPS-00717 || Tilk - Aoi Umi kara Kita Shoujo || 1 || 9f01700a || 0000001500000003 ||
|-
| SLPS_010.00 || Jsp || SLPS-01000 || Front Mission 2 || 1 || 123270ee || 0000001500000003 ||
|-
| SLPM_873.31 || Jap || SLPM-86331 || zzz_untranslated_japanese_title || 1 || fda96f69 || 0000001500000003 ||
|-
| SLPS_007.77 || Jap || SLPS-00777 || Derby Stallion - Thoroughbred Simulation Game || 1 || d5197559 || 0000001500000003 ||
|-
| SLPS_022.99 || Jap || SLPS-02299 || Derby Stallion '99 || 1 || 7b146d4e || 0000001500000003 ||
|-
| SLPM_860.86 || Jap || SLPM-86086 || World Soccer - Jikkyou Winning Eleven 3 - World Cup France '98 || 1 || 232d6e09 || 0000001500000003 ||
|-
| SLPS_018.20 || Jap || SLPS-01820 || Palm Town || 1 || f0b06d6a || 0000001500000003 ||
|-
| SLPS_012.42 || Jap || SLPS-01242 || Motteke Tamago with Ganbare Kamonohasi || 1 || c9497214 || 0000001500000003 ||
|-
| SLPS_020.38 || Jap || SLPS-02038 || Racing Lagoon || 1 || 5e9b6cfc || 0000001500000003 ||
|-
| SLPM_872.30 || Jap || SLPM-87230 || Wai Wai Kart [MajorWave 1500 Series] || 1 || c72770b2 || 0000001500000003 ||
|-
| SCPS_101.29 || Jap || SCPS-10129 || Dotchi Mecha! || 1 || 9b4e6ef0 || 0000001500000003 ||
|-
| SLPS_018.18 || Jap || SLPS-01818 || Langrisser IV & V Final Edition [Disc1of2] || 1 || 2f686de7 || 0000001500000003 ||
|-
| SLPS_018.19 || Jap || SLPS-01819 || Langrisser IV & V Final Edition [Disc2of2] || 1 || bcf36f23 || 0000001500000003 ||
|-
| SLPS_007.23 || Jap || SLPS-00723 || FEDA 2 - White Surge - The Platoon || 1 || 2e5a6fc9 || 0000001500000003 ||
|-
| SLPS_007.77 || Jap || SLPS-00777 || Derby Stallion - Thoroughbred Simulation Game || 1 || 5837561 || 0000001500000003 ||
|-
| SLPS_001.71 || Jap || SLPS-00171 || Hi-Octane || 1 || 41ce713c || 0000001500000003 ||
|-
| SCPS_180.02 || Jap || SCPS-18002 || Parappa Rapper || 1 || 9a7a70eb || 0000001500000003 ||
|-
| SLPS_022.32 || Jap || SLPS-02232 || Getter Robo Daikessen! (The Big Battle) || 1 || 5c5f712a || 0000001500000003 ||
|-
| SCPS_100.59 || Jap || SCPS-10059 || Legaia Densetsu, The || 1 || 7766b95 || 0000001500000003 ||
|-
| SLPM_865.00 || Jap || SLPM-86500 || Dragon Quest VII - Eden no Senshitachi [Disc1of2] || 1 || 233570b0 || 0000001500000003 ||
|-
| SLPM_865.01 || Jap || SLPM-86501 || Dragon Quest VII - Eden no Senshitachi [Disc2of2] || 1 || 8a387104 || 0000001500000003 ||
|-
| SLPM_865.00 || Jap || SLPM-86500 || Dragon Quest VII - Eden no Senshitachi [Disc1of2] || 1 || 1fcb70d6 || 0000001500000003 ||
|-
| SLPM_865.01 || Jap || SLPM-86501 || Dragon Quest VII - Eden no Senshitachi [Disc2of2] || 1 || be9670e6 || 0000001500000003 ||
|-
| SLPM_865.00 || Jap || SLPM-86500 || Dragon Quest VII - Eden no Senshitachi [Disc1of2] || 1 || ccb870ed || 0000001500000003 ||
|-
| SLPM_865.01 || Jap || SLPM-86501 || Dragon Quest VII - Eden no Senshitachi [Disc2of2] || 1 || 54e370fd || 0000001500000003 ||
|-
| SLPS_020.00 || Jap || SLPS-02000 || Final Fantasy IX [Disc1of4] || 1 || 69be6d66 || 0000001500000003 ||
|-
| SLPS_020.01 || Jap || SLPS-02001 || Final Fantasy IX [Disc2of4] || 1 || 6be16c3a || 0000001500000003 ||
|-
| SLPS_020.02 || Jap || SLPS-02002 || Final Fantasy IX [Disc3of4] || 1 || 32da6d5e || 0000001500000003 ||
|-
| SLPS_020.03 || Jap || SLPS-02003 || Final Fantasy IX [Disc4of4] || 1 || 70f66d44 || 0000001500000003 ||
|-
| SLPM_869.16 || Jap || SLPM-86916 || Dragon Quest IV - Michibikareshi Monotachi || 1 || c20e6fdd || 0000001500000003 ||
|-
 
 
 
| SLES_036.30 || Eur || SLES-03630 || X-Men - Mutant Academy 2 || 1 || 2f872b9 || 0000000100000001 || 1.02++
|-
| SLES_021.70 || Eur || SLES-02170 || Wu-Tang - Taste the Pain || 1 || 46846f41 || 0000000100000001 || 1.02++
|-
| SLES_028.65 || Eur || SLES-02865 || X-Men - Mutant Academy || 1 || 402a6cc3 || 0000000100000001 || 1.02++
|-
| SLES_037.36 || Eur || SLES-03736 || DragonBall Z - Ultimate Battle 22 || 1 || 49f87116 || 0000000100010000 || 1.02++
|-
| SCES_016.95 || Eur || SCES-01695 || Disney's Mulan - Animated Storybook || 1 || 1cd06fbd || 0000000b000089ea || 1.02++
|-
| SLES_019.07 || Eur || SLES-01907 || V-Rally 2 - Championship Edition || 2 || 217f73b9 || 0000000b0000c0ee || 1.02++
|-
| SLES_026.89 || Eur || SLES-02689 || Need for Speed - Porsche 2000 || 1 || 697a6c9d || 0000000100000100 || 1.02++
|-
| SLES_013.01 || Eur || SLES-01301 || Soul Reaver - Legacy of Kain || 1 || d3e2755e || 0000000b0000b722 || 1.02++
|-
| SLES_004.83 || Eur || SLES-00483 || Worms Pinball || 1 || ffae73a0 || 0000000c00000001 || 1.02++
|-
| SLES_000.99 || Eur || SLES-00099 || International Moto X || 1 || 545b76f8 || 0000000100000080 || 1.02++
|-
| SLES_018.16 || Eur || SLES-01816 || Driver || 1 || 9f5d70fb || 0000000100000080 || 1.02++
|-
 
 
| SLES_008.09 || Eur || SLES-00809 || N2O Nitrous Oxide || 1 || a28f6de2 || 0000001500000003 ||
|-
| SLES_000.82 || Eur || SLES-00082 || G-Police [Disc1of2] || 1 || 7137379 || 0000001500000003 ||
|-
| SLES_100.82 || Eur || SLES-10082 || G-Police [Disc2of2] || 1 || b7b67390 || 0000001500000003 ||
|-
| SLES_000.24 || Eur || SLES-00024 || Tomb Raider || 1 || 20a071df || 0000001500000003 ||
|-
| SCES_028.73 || Eur || SCES-02873 || Vib-Ribbon || 1 || 5aad6cad || 0000001500000003 ||
|-
 
 
 
| SLUS_013.82 || Usa || SLUS-01382 || X Men Mutant Academy 2 || 1 || ae74739a || 0000000100000001 || 1.10++
|-
| SLUS_010.41 || Usa || SLUS-01041 || Chrono Cross [Disc1of2] || 1 || a69371a0 || 0000001500000003 || 1.02++
|-
| SLUS_010.80 || Usa || SLUS-01080 || Chrono Cross [Disc2of2] || 1 || 868e72c8 || 0000001500000003 || 1.02++
|-
| SLUS_013.91 || Usa || SLUS-01391 || Cabela's Big Game Hunter - Ultimate Challenge || 1 || c8777043 || 0000000100010000 || 1.02++
|-
| SLUS_006.31 || Usa || SLUS-00631 || Kartia - The Word of Fate || 1 || 23877090 || 0000000100000080 || 1.02++
|-
| SLUS_008.62 || Usa || SLUS-00862 || Next Tetris, The || 1 || 607074ae || 0000000100000001 || 1.02++
|-
| SLUS_000.19 || Usa || SLUS-00019 || Wing Commander III - Heart of the Tiger [Disc1of4] || 1 || 32fe7217 || 0000000d00000001 || 1.02++
|-
| SLUS_005.53 || Usa || SLUS-00553 || Alundra || 1 || 1c62708d || 0000000e00000078 || 1.02++
|-
| SLUS_005.54 || Usa || SLUS-00554 || Colony Wars [Disc2of2] || 1 || 8c9670e0 || 0000000e00000078 || 1.02++
|-
| SLUS_011.04 || Usa || SLUS-01104 || Need for Speed - Porsche Unleashed || 1 || 2cf66cd6 || 0000000100000100 || 1.02++
|-
 
 
| SLUS_005.44 || Usa || SLUS-00544 || G-Police [Disc1of2] || 1 || 6fcf72df || 0000001500000003 ||
|-
| SLUS_005.56 || Usa || SLUS-00556 || G-Police [Disc2of2] || 1 || f5a872f0 || 0000001500000003 ||
|-
| SLUS_001.52 || Usa || SLUS-00152 || Tomb Raider || 1 || c06c711b || 0000001500000003 ||
|-
| SLUS_004.37 || Usa || SLUS-00437 || Tomb Raider II || 1 || cb24738b || 0000001500000003 ||
|-
| SLUS_004.35 || Usa || SLUS-00435 || Ninja - Shadow of Darkness || 1 || c1b574cf || 0000001500000003 ||
|-
| SLUS_000.38 || Usa || SLUS-00038 || FIFA '96 || 1 || cc726deb || 0000001500000003 ||
|-
|}
 
===== TitleID/DiscID in ps1_netemu =====
{|class="wikitable sortable"
|-
! ID in netemu.self !! Region !! DiscID !! Title !! unk !! checksum !! flags !! FW
|-
| SCPS_101.06 || Jap || SCPS-10106 || Arc the Lad III [Disc1of2] || 1 || 53226b9c || 0000001000000020 ||
|-
| SCPS_101.07 || Jap || SCPS-10107 || Arc the Lad III [Disc2of2] || 1 || 90f76b40 || 0000001000000020 ||
|-
| SLPS_018.80 || Jap || SLPS-01880 || Final Fantasy VIII [Disc1of4] || 1 || d8446e20 || 0000000000000001 ||
|-
| SLPS_018.81 || Jap || SLPS-01881 || Final Fantasy VIII [Disc2of4] || 1 || d4c76d1b || 0000000000000001 ||
|-
| SLPS_018.82 || Jap || SLPS-01882 || Final Fantasy VIII [Disc3of4] || 1 || 18126e07 || 0000000000000001 ||
|-
| SLPS_018.83 || Jap || SLPS-01883 || Final Fantasy VIII [Disc4of4] || 1 || 12376e34 || 0000000000000001 ||
|-
| SLPS_023.64 || Jap || SLPS-02364 || Chrono Cross [Disc1of2] || 4 || 40b572aa || 00000024fffffff0 ||
|-
| SLPS_023.65 || Jap || SLPS-02365 || Chrono Cross [Disc2of2] || 4 || 55e87206 || 00000024fffffff0 ||
|-
| SLPS_021.57 || Jap || SLPS-02157 || Tantei Jinguuji Saburo - Early Collection || 1 || ff40721f || 0000001a00000002 ||
|-
| SLPS_017.51 || Jap || SLPS-01751 || Elie no Atelier - Atelier Elie || 1 || bcdf6fa3 || 0000001100000001 ||
|-
| SLPS_911.80 || Jap || SLPS-91180 || Elie no Atelier - Atelier Elie [PlayStation the Best] || 1 || 8047091 || 0000001100000001 ||
|-
| SLPM_866.02 || Jap || SLPM-86602 || Blade Arts || 1 || 5a746ec3 || 0000001700000032 ||
|-
| SLPS_005.82 || Jap || SLPS-00582 || Beltlogger 9 || 3 || ba436ecc || 0000001d00000001 ||
|-
| SCPS_101.15 || Jap || SCPS-10115 || Alundra 2 || 1 || 56086c54 || 0000001200000006 ||
|-
| SLPM_860.72 || Jap || SLPM-86072 || Konami Antiques - MSX Collection Vol.3 || 1 || 4373729f || 000000120000000d ||
|-
| SCPS_180.12 || Jap || SCPS-18012 || Vib-Ribbon || 1 || dbb96c5c || 0000001000000120 ||
|-
| SLPS_012.22 || Jap || SLPS-01222 || BioHazard 2 [Disc1of2] || 1 || f5f773c5 || 00000003000007d0 ||
|-
| SLPS_012.22 || Jap || SLPS-01222 || BioHazard 2 [Disc1of2] || 1 || 7d8d73b7 || 00000003000007d0 ||
|-
| SLPS_017.93 || Jap || SLPS-01793 || Initial D || 1 || 4fa46da5 || 00000016ffffff80 ||
|-
| SLPM_864.59 || Jap || SLPM-86459 || Sanvein [SuperLite 1500 Series] || 1 || c78a748b || 0000001000000080 ||
|-
| SLPS_026.21 || Jap || SLPS-02621 || Strider Hiryu 1 & 2 [Disc2of2] || 1 || c3157410 || 0000002800000002 ||
|-
| SCPS_100.03 || Jap || SCPS-10003 || Crime Crackers || 1 || ed04760d || 0000001100000001 ||
|-
| SCPS_180.11 || Jap ||  ||  || 1 || 286070c5 || 0000000000000000 ||
|-
| SLPS_018.53 || Jap ||  ||  || 1 || 9d4473e4 || 0000002a00000514 ||
|-
| SCPS_101.03 || Jap ||  ||  || 1 || 6e516dad || 0000002a00000514 ||
|-
| SCPS_100.47 || Jap ||  ||  || 1 || 56d97048 || 0000002a00000514 ||
|-
| SLPS_033.12 || Jap ||  ||  || 1 || a0ce6ca9 || 0000002a00000514 ||
|-
| SLPM_861.85 || Jap ||  ||  || 1 || ebaf6f5d || 0000002a00000514 ||
|-
| SLPM_861.86 || Jap ||  ||  || 1 || 3e696c8a || 0000002a00000514 ||
|-
| SLPM_861.87 || Jap ||  ||  || 1 || 81d86e23 || 0000002a00000514 ||
|-
| SCPS_100.91 || Jap ||  ||  || 2 || c30f6e06 || 0000001000000004 ||
|-
| SCPS_100.99 || Jap ||  ||  || 2 || 9502715f || 0000002a00000514 ||
|-
| SCPS_100.73 || Jap ||  ||  || 2 || 73e06e8f || 0000002a00000514 ||
|-
| SLPS_026.33 || Jap ||  ||  || 1 || 1a696e28 || 0000002a00000514 ||
|-
| SLPS_029.88 || Jap ||  ||  || 1 || 3fad6f38 || 0000002a00000514 ||
|-
| SLPM_866.40 || Jap ||  ||  || 2 || f9db6f2d || 0000002a00000514 ||
|-
| SLPS_026.61 || Jap ||  ||  || 1 || c49b6f05 || 0000002a00000514 ||
|-
| SLPS_026.62 || Jap ||  ||  || 1 || 6d7d6f1b || 0000002a00000514 ||
|-
| SLPS_023.00 || Jap ||  ||  || 2 || 9b397352 || 0000002a00000514 ||
|-
| SLPS_024.89 || Jap ||  ||  || 2 || 8f4676c6 || 0000002a00000514 ||
|-
| SLPS_030.87 || Jap ||  ||  || 2 || 30f078ac || 0000002a00000514 ||
|-
| SLPM_860.33 || Jap ||  ||  || 1 || 1b467259 || 0000002a00000514 ||
|-
| SLPS_007.17 || Jap ||  ||  || 1 || 9f01700a || 0000001f000007d0 ||
|-
| SLPM_873.31 || Jap ||  ||  || 3 || fda96f69 || 0000000300000258 ||
|-
| SLPS_002.00 || Jap ||  ||  || 1 || f2a57355 || 0000001d00000001 ||
|-
| SLPS_016.26 || Jap ||  ||  || 1 || 70627260 || 0000001000000020 ||
|-
| SLPS_016.27 || Jap ||  ||  || 1 || a5c7210 || 0000001000000020 ||
|-
| SLPS_028.17 || Jap ||  ||  || 1 || 8c73710b || 0000002e00000002 ||
|-
| SLPM_871.17 || Jap ||  ||  || 1 || 51e66f74 || 0000002e00000002 ||
|-
| SCPS_100.89 || Jap ||  ||  || 1 || e39f71b3 || 0000000c00001388 ||
|-
| SCPS_100.90 || Jap ||  ||  || 1 || 68d771a3 || 0000000c00001388 ||
|-
| SLPS_017.50 || Jap ||  ||  || 3 || 5d6c741f || 0000002d00000001 ||
|-
| SLPM_870.68 || Jap ||  ||  || 1 || a9f26fc8 || 0000001000000001 ||
|-
| SLPS_010.65 || Jap ||  ||  || 1 || 6c1f6c29 || 0000001000000002 ||
|-
| SLPS_019.90 || Jap ||  ||  || 1 || 9f817715 || 0000001100000001 ||
|-
| slps_002.49 || Jap ||  ||  || 1 || 17867187 || 0000001100000001 ||
|-
| SLPS_011.71 || Jap ||  ||  || 1 || 3c5e7167 || 0000001000000001 ||
|-
| SLPS_028.58 || Jap ||  ||  || 1 || a8426b24 || 0000001100000001 ||
|-
| SLPS_030.12 || Jap ||  ||  || 2 || 24857336 || 0000000300000032 ||
|-
| SLPM_872.84 || Jap ||  ||  || 2 || 6b607035 || 0000001100000001 ||
|-
| SLPS_001.94 || Jap ||  ||  || 1 || b01d7540 || 0000001000000002 ||
|-
| SLPS_014.21 || Jap ||  ||  || 1 || 5e466c72 || 0000001100000001 ||
|-
| SLPS_013.83 || Jap ||  ||  || 1 || 2e3872b6 || 00000003000005dc ||
|-
| SLPS_022.99 || Jap ||  ||  || 1 || 7b146d4e || 0000001100000001 ||
|-
| SLPS_007.77 || Jap ||  ||  || 1 || d5197559 || 0000001100000001 ||
|-
| SLPS_031.35 || Jap ||  ||  || 1 || 19e96efa || 0000001100000001 ||
|-
| SLPS_018.20 || Jap ||  ||  || 1 || f0b06d6a || 00000003000000c8 ||
|-
| SLPS_012.42 || Jap ||  ||  || 1 || c9497214 || 0000001200000014 ||
|-
| SLPM_860.95 || Jap ||  ||  || 1 || 39fe7168 || 0000001100000001 ||
|-
| SLPM_863.45 || Jap ||  ||  || 1 || 20436c49 || 0000001f000001f4 ||
|-
| SCPS_100.33 || Jap ||  ||  || 1 || 660971a5 || 0000001100000001 ||
|-
| SLPM_866.13 || Jap ||  ||  || 5 || 2f647175 || 000000120000000c ||
|-
| SLPS_002.15 || Jap ||  ||  || 1 || 34c16e53 || 0000001100000001 ||
|-
| SLPS_002.16 || Jap ||  ||  || 1 || b9796ea7 || 0000001100000001 ||
|-
| SCPS_100.71 || Jap ||  ||  || 1 || 16ab6e7b || 0000001100000001 ||
|-
| SLPS_000.10 || Jap ||  ||  || 1 || b36372e0 || 0000001100000001 ||
|-
| SLPM_872.30 || Jap ||  ||  || 1 || c72770b2 || 0000001200000014 ||
|-
| SLPS_000.28 || Jap ||  ||  || 1 || 6087000 || 0000001100000001 ||
|-
| SLPS_006.40 || Jap ||  ||  || 1 || 41c872d2 || 0000001000000002 ||
|-
| SCPS_100.21 || Jap ||  ||  || 3 || 9f9b6e69 || 0000002d00000001 ||
|-
| SLPS_914.44 || Jap ||  ||  || 5 || b9317410 || 000000120000000c ||
|-
| SLPS_914.45 || Jap ||  ||  || 5 || c1007411 || 000000120000000c ||
|-
| SCPS_100.60 || Jap ||  ||  || 2 || 4bca6fd6 || 0000001f00000320 ||
|-
| SLPS_006.24 || Jap ||  ||  || 1 || 6a767294 || 0000002e00000002 ||
|-
| SLPS_018.18 || Jap ||  ||  || 1 || 2f686de7 || 0000000000000000 ||
|-
| SLPS_018.19 || Jap ||  ||  || 3 || bcf36f23 || 0000001100000001 ||
|-
| SLPM_860.28 || Jap || SLPM-86028 || Final Fantasy IV || 4 || 770f6f03 || 000000250000002a ||
|-
| SLPS_001.80 || Jap ||  ||  || 3 || a017720f || 0000000300000258 ||
|-
| SLPS_007.23 || Jap ||  ||  || 1 || 2e5a6fc9 || 0000001100000001 ||
|-
| SLPS_007.77 || Jap ||  ||  || 1 || 5837561 || 0000001100000001 ||
|-
| SLPS_001.71 || Jap ||  ||  || 1 || 41ce713c || 000000120000000e ||
|-
| SLPS_022.66 || Jap ||  ||  || 1 || d73b735b || 0000001000000020 ||
|-
| SLPS_022.67 || Jap ||  ||  || 1 || b3347162 || 0000001000000020 ||
|-
| SLPS_022.68 || Jap ||  ||  || 1 || 1f547343 || 0000001000000020 ||
|-
| SLPS_022.69 || Jap ||  ||  || 1 || 5b797240 || 0000001000000020 ||
|-
| SLPS_003.04 || Jap ||  ||  || 1 || b4570c7 || 0000001000000020 ||
|-
| SLPS_003.05 || Jap ||  ||  || 1 || 2f7c6d6c || 0000001000000020 ||
|-
| SLPS_011.90 || Jap ||  ||  || 4 || 5f51743a || 0000000c00000000 ||
|-
| SLPS_011.91 || Jap ||  ||  || 4 || 8f317483 || 0000000c00000000 ||
|-
| SLPS_011.92 || Jap ||  ||  || 4 || f13275bc || 0000000c00000000 ||
|-
| SLPS_011.93 || Jap ||  ||  || 4 || 5f51743a || 0000000c00000000 ||
|-
| SLPS_011.94 || Jap ||  ||  || 4 || 8f317483 || 0000000c00000000 ||
|-
| SLPS_011.95 || Jap ||  ||  || 4 || f13275bc || 0000000c00000000 ||
|-
| SLPM_861.23 || Jap ||  ||  || 2 || 6480711b || 0000001e000007d0 ||
|-
| SLPS_015.43 || Jap ||  ||  || 1 || 6a956f92 || 0000002800000002 ||
|-
| SLPS_015.44 || Jap ||  ||  || 1 || 28157073 || 0000002800000002 ||
|-
| SLPS_015.45 || Jap ||  ||  || 1 || b0f86f7a || 0000002800000002 ||
|-
| SLPS_021.08 || Jap ||  ||  || 1 || fee172c6 || 00000003000001f4 ||
|-
| SLPS_019.26 || Jap ||  ||  || 5 || c74271dc || 0000000300000384 ||
|-
| SLPM_862.24 || Jap ||  ||  || 3 || 43406d6f || 000000030000012c ||
|-
| SLPM_862.25 || Jap ||  ||  || 3 || 8f686d14 || 000000030000012c ||
|-
| SLPS_002.48 || Jap ||  ||  || 1 || eb08766f || 0000001000000002 ||
|-
| SLPS_003.42 || Jap ||  ||  || 1 || ed3675b2 || 0000001000000002 ||
|-
| slps_002.67 || Jap ||  ||  || 1 || daa073db || 0000001d00000002 ||
|-
| SLPS_000.06 || Jap ||  ||  || 2 || 37a1705b || 0000001100000001 ||
|-
| SLPS_000.31 || Jap ||  ||  || 1 || fbde704d || 0000001100000001 ||
|-
| SLPS_014.20 || Jap ||  ||  || 5 || fc4671f3 || 00000003000001f4 ||
|-
| SLPM_867.75 || Jap ||  ||  || 3 || f0926ff3 || 0000001200000000 ||
|-
| SLPM_867.76 || Jap ||  ||  || 2 || 5bf1723f || 0000001200000000 ||
|-
| SLPM_865.49 || Jap ||  ||  || 2 || 6c3f7219 || 0000000100000002 ||
|-
| SLPM_865.50 || Jap ||  ||  || 2 || f5873a1 || 0000000100000002 ||
|-
| SLPM_868.81 || Jap ||  ||  || 1 || 4927738c || 0000001000000020 ||
|-
| SLPM_868.82 || Jap ||  ||  || 1 || 22927190 || 0000001000000020 ||
|-
| SLPS_027.26 || Jap ||  ||  || 1 || f3156ecc || 00000004000000c8 ||
|-
| SLPM_867.15 || Jap ||  ||  || 1 || 20a6e24 || 00000004000000c8 ||
|-
| SIPS_600.27 || Jap ||  ||  || 1 || 53b97685 || 00000003000001f4 ||
|-
| SLPS_004.77 || Jap ||  ||  || 4 || 7f0773ca || 00000003000004b0 ||
|-
| SLPS_004.78 || Jap ||  ||  || 4 || 415873c2 || 00000003000004b0 ||
|-
| SLPS_004.79 || Jap ||  ||  || 4 || 42607296 || 00000003000004b0 ||
|-
| SLPS_004.80 || Jap ||  ||  || 4 || 423873a1 || 00000003000004b0 ||
|-
| SLPS_029.23 || Jap ||  ||  || 3 || 87036e9e || 00000003000002bc ||
|-
| SLPS_000.83 || Jap ||  ||  || 7 || 427c7116 || 0000001200000008 ||
|-
| SLPM_870.70 || Jap ||  ||  || 1 || f8a473bc || 0000001400000010 ||
|-
| SLPM_872.70 || Jap ||  ||  || 2 || c76c716e || 00000003000001f4 ||
|-
| SLPS_011.33 || Jap ||  ||  || 5 || bbd96ebe || 0000001100000001 ||
|-
| SLPS_002.38 || Jap ||  ||  || 1 || 8fe37274 || 0000001100000001 ||
|-
| SLPS_015.48 || Jap ||  ||  || 5 || 24377013 || 000000120000000a ||
|-
| SLPM_867.12 || Jap ||  ||  || 1 || 49de6ed5 || 0000001100000001 ||
|-
| SLPS_019.02 || Jap ||  ||  || 1 || a0926c45 || 0000001100000001 ||
|-
| SLPS_013.11 || Jap ||  ||  || 1 || 11206da7 || 0000001a00000002 ||
|-
| SLPS_023.61 || Jap || SLPS-02361 || Touge Max G || 2 || c1556eb3 || 0000000300000708 ||
|-
| SLPS_017.80 || Jap ||  ||  || 3 || f77873aa || 0000000300000578 ||
|-
| SLPS_017.81 || Jap ||  ||  || 3 || 6e073ac || 0000000300000578 ||
|-
| SLPS_019.21 || Jap ||  ||  || 1 || f7e572c0 || 0000001000000020 ||
|-
| SLPS_019.22 || Jap ||  ||  || 1 || 7d1d72b0 || 0000001000000020 ||
|-
| SLPS_011.79 || Jap ||  ||  || 1 || 3e7b73c7 || 0000001100000001 ||
|-
| SLPS_024.79 || Jap ||  ||  || 1 || 22e86ba3 || 0000001d00000001 ||
|-
| SLPS_000.25 || Jap ||  ||  || 1 || 7e2873eb || 00000019000002bc ||
|-
| SLPS_017.16 || Jap ||  ||  || 1 || ffe3710d || 0000000100000002 ||
|-
| SLPS_017.37 || Jap ||  ||  || 2 || 8eae73b0 || 0000001100000001 ||
|-
| SLPS_027.43 || Jap ||  ||  || 1 || 5b556e33 || 00000018ffffffff ||
|-
| SLPS_010.45 || Jap ||  ||  || 1 || 4aac6cee || 0000001000000020 ||
|-
| SLPS_010.46 || Jap ||  ||  || 1 || 845f6c71 || 0000001000000020 ||
|-
| SLPS_010.47 || Jap ||  ||  || 1 || 9ff6c64 || 0000001000000020 ||
|-
| SLPS_011.57 || Jap ||  ||  || 1 || dee270e9 || 00000004000000c8 ||
|-
| SLPS_013.88 || Jap ||  ||  || 1 || 7e896ddd || 00000004000000c8 ||
|-
| SLPS_004.16 || Jap ||  ||  || 1 || fe9a6e57 || 0000000100000001 ||
|-
| SCES_016.95 || Eur || SCES-01695 || Disney's Mulan - Animated Storybook || 1 || 1cd06fbd || 00000015000089ea ||
|-
| SLES_019.07 || Eur || SLES-01907 || V-Rally 2 - Championship Edition || 1 || 217f73b9 || 000000150000c0ee ||
|-
| SLES_013.01 || Eur || SLES-01301 || Soul Reaver - Legacy of Kain || 1 || d3e2755e || 000000150000b722 ||
|-
| SLES_005.56 || Eur ||  ||  || 1 || b2376d4b || 0000001100000001 ||
|-
| SCES_021.05 || Eur ||  ||  || 1 || 24066f28 || 000000020017d3d4 ||
|-
| SCES_003.11 || Eur ||  ||  || 1 || d0317129 || 000000020017d57c ||
|-
| SCES_000.08 || Eur ||  ||  || 1 || 20037398 || 0000002e00000002 ||
|-
| SLES_007.55 || Eur ||  ||  || 1 || aad37657 || 0000001400000004 ||
|-
| SLES_013.43 || Eur ||  ||  || 1 || c47d73b4 || 0000002e00000002 ||
|-
| SLES_113.43 || Eur ||  ||  || 1 || e4c373b5 || 0000002e00000002 ||
|-
| SCES_000.61 || Eur ||  ||  || 1 || 7d876dc2 || 0000001a00000002 ||
|-
| SLES_027.54 || Eur ||  ||  || 1 || cf2870bb || 000000020017d67c ||
|-
| sles_027.90 || Eur ||  ||  || 1 || 5c1f6b0b || 0000001100000001 ||
|-
| SCES_022.85 || Eur ||  ||  || 3 || e8466f95 || 0000000d00000032 ||
|-
| SCES_122.85 || Eur ||  ||  || 3 || 85fe6e5c || 0000000d00000032 ||
|-
| SLES_017.60 || Eur ||  ||  || 1 || e8576c52 || 0000001100000001 ||
|-
| SCES_039.37 || Eur ||  ||  || 1 || bb1e6e47 || 0000001100000001 ||
|-
| SLES_031.78 || Eur ||  ||  || 1 || 43d56cc9 || 0000001100000001 ||
|-
| SCUS_945.08 || Usa ||  ||  || 1 || 18d56d2a || 0000001a00000002 ||
|-
| SCUS_949.00 || Usa ||  ||  || 1 || 124f71ad || 0000001a00000002 ||
|-
| SCUS_943.09 || Usa ||  ||  || 1 || a9c66fe4 || 0000001a00000002 ||
|-
| SCUS_941.03 || Usa ||  ||  || 1 || df4c6dbb || 0000001a00000002 ||
|-
| SLUS_002.13 || Usa ||  ||  || 1 || cff7372 || 0000001a00000002 ||
|-
| SCUS_943.02 || Usa ||  ||  || 1 || 7e67394 || 0000002e00000002 ||
|-
| SCUS_944.76 || Usa ||  ||  || 1 || f7656d79 || 0000001a00000002 ||
|-
| SCUS_943.01 || Usa ||  ||  || 1 || 24f17103 || 0000001a00000002 ||
|-
| SCUS_943.56 || Usa ||  ||  || 1 || 776872c1 || 0000001a00000002 ||
|-
| SCUS_944.26 || Usa ||  ||  || 4 || 24f37297 || 0000001200000010 ||
|-
| SCUS_944.84 || Usa ||  ||  || 2 || 6bd87066 || 0000000c00001388 ||
|-
| SCUS_944.98 || Usa ||  ||  || 2 || 6f0c7218 || 0000000c00001388 ||
|-
| SCUS_941.08 || Usa ||  ||  || 1 || 4f066ffa || 0000001a00000002 ||
|-
| SCUS_941.63 || Usa ||  ||  || 1 || 1d04759b || 0000001a00000002 ||
|-
| SCUS_941.64 || Usa ||  ||  || 1 || 62c7665 || 0000001a00000002 ||
|-
| SCUS_941.65 || Usa ||  ||  || 1 || 981f74c6 || 0000001a00000002 ||
|-
| SCUS_942.21 || Usa ||  ||  || 1 || 5d9973b1 || 0000001a00000002 ||
|-
| SCUS_943.55 || Usa ||  ||  || 1 || 60476e89 || 0000001a00000002 ||
|-
| SCUS_944.51 || Usa ||  ||  || 3 || 916a6f8a || 0000000d00000032 ||
|-
| SCUS_944.92 || Usa ||  ||  || 3 || 254f6e71 || 0000000d00000032 ||
|-
| SLUS_009.58 || Usa ||  ||  || 1 || 70356caf || 0000001a00000002 ||
|-
| SLUS_003.79 || Usa ||  ||  || 1 || a9a06e01 || 0000001a00000002 ||
|-
| SLUS_004.10 || Usa ||  ||  || 1 || 96316d15 || 0000001a00000002 ||
|-
| SLUS_004.31 || Usa ||  ||  || 2 || f1636d84 || 0000001100000001 ||
|-
| SLUS_004.85 || Usa ||  ||  || 2 || 45c86d54 || 0000001100000001 ||
|-
| SLUS_006.65 || Usa ||  ||  || 2 || 30946c87 || 0000001100000001 ||
|-
| SLUS_006.67 || Usa ||  ||  || 2 || d3dc6c57 || 0000001100000001 ||
|-
| SLUS_010.41 || Usa || SLUS-01041 || Chrono Cross [Disc1of2] || 4 || a69371a0 || 00000024fffffff0 ||
|-
| SLUS_010.80 || Usa || SLUS-01080 || Chrono Cross [Disc2of2] || 4 || 868e72c8 || 00000024fffffff0 ||
|-
| SLUS_008.79 || Usa ||  ||  || 1 || 25e96d12 || 0000001d00000002 ||
|-
| SLUS_002.38 || Usa ||  ||  || 1 || 4c1c7189 || 0000001a00000002 ||
|-
| SLUS_001.13 || Usa ||  ||  || 1 || f2bd6ee2 || 0000001a00000002 ||
|-
| SLUS_002.36 || Usa ||  ||  || 2 || c1117292 || 0000001400000004 ||
|-
| SLUS_005.18 || Usa ||  ||  || 1 || d212739f || 0000001a00000002 ||
|-
| SLUS_004.40 || Usa ||  ||  || 1 || e28f729a || 0000001a00000002 ||
|-
| SLUS_000.61 || Usa ||  ||  || 1 || e1b4752c || 0000001a00000002 ||
|-
| SLUS_000.67 || Usa ||  ||  || 1 || dc237170 || 0000001e00000708 ||
|-
| SLUS_000.42 || Usa ||  ||  || 3 || 93c071a2 || 000000030000044c ||
|-
| SLUS_000.27 || Usa ||  ||  || 1 || 3b037462 || 0000001a00000002 ||
|-
| SLUS_001.52 || Usa || SLUS-00152 || Tomb Raider || 1 || 59207131 || 0000001a00000002 ||
|-
| SLUS_002.32 || Usa ||  ||  || 1 || 55e74c4 || 0000001a00000002 ||
|-
| SLUS_004.37 || Usa || SLUS-00437 || Tomb Raider II || 1 || cb24738b || 0000001a00000002 ||
|-
| SCUS_943.04 || Usa ||  ||  || 1 || c0546d88 || 0000001a00000002 ||
|-
| SLUS_007.07 || Usa ||  ||  || 1 || 2c9d6e1e || 000000030000044c ||
|-
| SCUS_944.24 || Usa ||  ||  || 1 || 6c8c7285 || 0000001d00000008 ||
|-
| SLUS_000.19 || Usa || SLUS-00019 || Wing Commander III - Heart of the Tiger [Disc1of4] || 4 || 32fe7217 || 0000000300000320 ||
|-
| SLUS_001.34 || Usa ||  ||  || 4 || f84a722c || 0000000300000320 ||
|-
| SLUS_001.35 || Usa ||  ||  || 4 || 993a71df || 0000000300000320 ||
|-
| SLUS_001.36 || Usa ||  ||  || 4 || f6f4718e || 0000000300000320 ||
|-
| SLUS_002.70 || Usa ||  ||  || 4 || e562706a || 0000000300000320 ||
|-
| SLUS_002.71 || Usa ||  ||  || 4 || 8c5b703d || 0000000300000320 ||
|-
| SLUS_002.72 || Usa ||  ||  || 4 || f4a37003 || 0000000300000320 ||
|-
| SLUS_002.73 || Usa ||  ||  || 4 || 5877031 || 0000000300000320 ||
|-
| SLUS_000.76 || Usa ||  ||  || 1 || 7e91728c || 0000001200000006 ||
|-
| SLUS_000.28 || Usa ||  ||  || 1 || 64d8758d || 0000001200000006 ||
|-
| SLUS_001.37 || Usa ||  ||  || 1 || cae576e7 || 0000001200000006 ||
|-
| SCUS_944.48 || Usa ||  ||  || 1 || 68537091 || 0000002e00000002 ||
|-
| SLUS_012.53 || Usa ||  ||  || 1 || 4a926d54 || 0000001000000020 ||
|-
| SLUS_012.54 || Usa ||  ||  || 1 || 5c3d6fd0 || 0000001000000020 ||
|-
| SLUS_004.33 || Usa ||  ||  || 1 || 34fa737c || 0000000100000001 ||
|-
| SCUS_944.54 || Usa ||  ||  || 1 || 49486d8e || 0000000400000258 ||
|-
| SCUS_942.00 || Usa ||  ||  || 1 || e9575ed || 00000019000002bc ||
|-
|}
 
===== TitleID/DiscID in ps1_newemu =====
{|class="wikitable sortable"
|-
! ID in newemu.self !! Region !! DiscID !! Title !! unk !! checksum !! flags !! FW
|-
| SLPS_023.64 ||  ||  ||  || 1 || 40b572aa || 0000001800000003 ||
|-
| SLPS_023.65 ||  ||  ||  || 1 || 55e87206 || 0000001800000003 ||
|-
| SLPM_860.28 ||  ||  ||  || 1 || 770f6f03 || 0000001800000003 ||
|-
| SLPS_000.13 ||  ||  ||  || 3 || 9dc97376 || 00000005000000c8 ||
|-
| SLPS_023.61 ||  ||  ||  || 1 || c1556eb3 || 0000000100000001 ||
|-
| SLPS_013.43 ||  ||  ||  || 1 || 2b2270f6 || 0000000100000080 ||
|-
| SLPS_007.70 ||  ||  ||  || 1 || ba3573e7 || 0000000100000010 ||
|-
| SLPS_017.72 ||  ||  ||  || 2 || 3e6e7597 || 00000013fffffa00 ||
|-
| SLPS_035.02 ||  ||  ||  || 1 || 32256c55 || 0000001800000003 ||
|-
| SLPS_023.71 ||  ||  ||  || 1 || d59774b8 || 0000000100000020 ||
|-
| SLPS_007.50 ||  ||  ||  || 1 || edad71d8 || 0000000100000040 ||
|-
| SLPS_007.00 ||  ||  ||  || 1 || 14dd7664 || 0000000100000040 ||
|-
| SLPS_008.30 ||  ||  ||  || 1 || 9ea572ab || 0000000100010000 ||
|-
| SLPM_862.26 ||  ||  ||  || 1 || d9fb6e40 || 00000013fffff700 ||
|-
| SLPS_034.95 ||  ||  ||  || 2 || 76fa6c8f || 0000001400000001 ||
|-
| SLPM_861.62 ||  ||  ||  || 1 || 171a6e8c || 0000000400000708 ||
|-
| SLPM_861.62 ||  ||  ||  || 1 || 3b716e92 || 0000000400000708 ||
|-
| SCPS_100.92 ||  ||  ||  || 1 || 985c6d1c || 0000000100010000 ||
|-
| SLPM_870.56 ||  ||  ||  || 1 || c18c6d68 || 0000000100010000 ||
|-
| SLPS_014.34 ||  ||  ||  || 1 || 33196d96 || 0000000100010000 ||
|-
| SLPS_021.08 ||  ||  ||  || 2 || fee172c6 || 0000000200000000 ||
|-
| SLPS_021.09 ||  ||  ||  || 2 || ecb1743a || 0000000200000000 ||
|-
| SLPS_022.27 ||  ||  ||  || 1 || 8212727f || 0000000100010000 ||
|-
| SLPS_027.36 ||  ||  ||  || 1 || 24bc6f0e || 0000000100010000 ||
|-
| SLPS_000.40 ||  ||  ||  || 1 || 3a6f72f5 || 0000000100010000 ||
|-
| SLPS_014.21 ||  ||  ||  || 1 || 5e466c72 || 0000001800000003 ||
|-
| SLPM_864.90 ||  ||  ||  || 1 || e94570d4 || 0000000100010000 ||
|-
| SLPS_007.52 ||  ||  ||  || 1 || 40a7270 || 0000000100010000 ||
|-
| SLPS_003.04 ||  ||  ||  || 1 || 2d507191 || 0000000100010000 ||
|-
| SLPS_003.04 ||  ||  ||  || 1 || b4570c7 || 0000000100010000 ||
|-
| SLPS_003.05 ||  ||  ||  || 1 || 2f7c6d6c || 0000000100010000 ||
|-
| SLPM_860.97 ||  ||  ||  || 1 || c15f7120 || 0000000100010000 ||
|-
| SLPM_860.98 ||  ||  ||  || 1 || eb946d0a || 0000000100010000 ||
|-
| SLPS_016.09 ||  ||  ||  || 1 || 60f06ea0 || 0000000100010000 ||
|-
| SLPS_016.10 ||  ||  ||  || 1 || e90a6ce3 || 0000000100010000 ||
|-
| SLPS_024.12 ||  ||  ||  || 1 || ab3b70e7 || 0000000100010000 ||
|-
| SLPS_025.70 ||  ||  ||  || 2 || c47c6d81 || 0000000200000000 ||
|-
| SLPS_025.71 ||  ||  ||  || 2 || 1ede6edc || 0000000200000000 ||
|-
| SLPS_016.83 ||  ||  ||  || 1 || 7ffa79b2 || 0000000100010000 ||
|-
| SLPS_010.08 ||  ||  ||  || 2 || a72b7071 || 0000000100010000 ||
|-
| SLPS_023.68 ||  ||  ||  || 1 || 12e17661 || 0000000100010000 ||
|-
| SLPS_024.60 ||  ||  ||  || 2 || aa1473a6 || 0000000200000000 ||
|-
| SLPS_024.61 ||  ||  ||  || 2 || 8cb57276 || 0000000200000000 ||
|-
| SLPS_024.62 ||  ||  ||  || 2 || 344473b8 || 0000000200000000 ||
|-
| SLPS_024.63 ||  ||  ||  || 2 || 689a72b4 || 0000000200000000 ||
|-
| SCPS_101.36 ||  ||  ||  || 2 || aa4070a9 || 0000000100010000 ||
|-
| SLPS_017.17 ||  ||  ||  || 1 || ead56ab7 || 0000000100010000 ||
|-
| SLPS_001.94 ||  ||  ||  || 1 || b01d7540 || 0000000b00000002 ||
|-
| SLPS_005.50 ||  ||  ||  || 1 || 77327123 || 0000000f00063fe1 ||
|-
| SLPS_005.50 ||  ||  ||  || 1 || 505971b4 || 0000000f00063fe1 ||
|-
| SLPS_007.87 ||  ||  ||  || 1 || cf9d72df || 0000000f00063fe1 ||
|-
| SLPM_863.81 ||  ||  ||  || 1 || f04b7147 || 0000000f1090c229 ||
|-
| SLPS_004.77 ||  ||  ||  || 1 || 448373e5 || 0000000c00000001 ||
|-
| SLPS_016.11 ||  ||  ||  || 1 || 68ed73d3 || 0000000b00000004 ||
|-
| SLPM_862.68 ||  ||  ||  || 2 || d046df5 || 0000001500000001 ||
|-
| SLPM_862.68 ||  ||  ||  || 2 || 5af46e00 || 0000001500000001 ||
|-
| SLPS_017.74 ||  ||  ||  || 1 || affd73f0 || 0000000100000001 ||
|-
| SLPS_005.55 ||  ||  ||  || 1 || 9faf7086 || 00000006000000c8 ||
|-
| SLPM_863.17 ||  ||  ||  || 1 || 4e437226 || 0000000700000064 ||
|-
| unknown ||  ||  ||  || 1 || cf07737f || 0000000900000004 ||
|-
| unknown ||  ||  ||  || 1 || 18fd70a4 || 0000000b00000004 ||
|-
| SLPS_017.60 ||  ||  ||  || 1 || c24577b9 || 0000000b00000004 ||
|-
| SLPS_013.24 ||  ||  ||  || 1 || 5a7f712a || 0000000100000080 ||
|-
| SLPS_004.58 ||  ||  ||  || 1 || 9f7d6e65 || 0000000100000200 ||
|-
| SLPS_008.31 ||  ||  ||  || 1 || b3127504 || 0000000b00000004 ||
|-
| SLPS_005.90 ||  ||  ||  || 1 || c0d67577 || 0000000b00000004 ||
|-
| SLPS_023.07 ||  ||  ||  || 1 || efba6dcf || 0000000100000001 ||
|-
| SLPS_014.03 ||  ||  ||  || 1 || 12345678 || 0000000000000000 ||
|-
| SLPS_014.04 ||  ||  ||  || 1 || 12345678 || 0000000000000000 ||
|-
| SLPS_018.68 ||  ||  ||  || 1 || 70f6ca5 || 0000000100000001 ||
|-
| SLPS_180.12 ||  ||  ||  || 1 || dbb96c5c || 0000001600000001 ||
|-
| SLPS_008.86 ||  ||  ||  || 1 || f19370b0 || 00000006000000c8 ||
|-
| SLPS_004.17 ||  ||  ||  || 2 || f4066f09 || 000000060000015e ||
|-
| SLPS_024.77 ||  ||  ||  || 2 || c2ef79a5 || 000000060000015e ||
|-
| SLPS_006.14 ||  ||  ||  || 1 || aeaf7108 || 00000006000000c8 ||
|-
| SLPS_006.38 ||  ||  ||  || 1 || 4ebd7ccc || 00000006000000c8 ||
|-
| SLPS_026.13 ||  ||  ||  || 1 || 46e77197 || 0000000100000080 ||
|-
| unknown ||  ||  ||  || 1 || 53af6af9 || 0000000100000001 ||
|-
| SLPS_031.61 ||  ||  ||  || 1 || 942c7422 || 0000000100000001 ||
|-
| SLPM_867.65 ||  ||  ||  || 1 || f4ee737d || 0000000100000001 ||
|-
| SCPS_100.37 ||  ||  ||  || 3 || c139700e || 0000000100010500 ||
|-
| SLPM_865.44 ||  ||  ||  || 2 || de0d72b7 || 0000000200000000 ||
|-
| SLPS_018.75 ||  ||  ||  || 1 || 73cc6be9 || 00000013fffff700 ||
|-
| SLPS_005.65 ||  ||  ||  || 1 || 7fe57339 || 0000000100000080 ||
|-
| SLPS_023.20 ||  ||  ||  || 1 || 93677288 || 0000000100000400 ||
|-
| SLPS_009.03 ||  ||  ||  || 1 || a8a3704c || 0000001500000001 ||
|-
| SLPS_910.19 ||  ||  ||  || 3 || f6d3736d || 0000000200000000 ||
|-
| SLPM_871.17 ||  ||  ||  || 1 || 51e66f74 || 0000000100000001 ||
|-
| SCPS_100.26 ||  ||  ||  || 1 || ec156e17 || 0000000100020000 ||
|-
| SLPM_860.85 ||  ||  ||  || 2 || 41bf6ff7 || 0000000100010000 ||
|-
| SLPM_867.67 ||  ||  ||  || 1 || 88c36d50 || 0000000dffffffb5 ||
|-
| SLPM_865.23 ||  ||  ||  || 1 || 49347190 || 0000000dffffffc4 ||
|-
| SLPS_006.40 ||  ||  ||  || 2 || 41c872d2 || 0000000100010081 ||
|-
| SLPS_011.71 ||  ||  ||  || 2 || 3c5e7167 || 0000000100010081 ||
|-
| SLPM_860.84 ||  ||  ||  || 2 || fce56ce6 || 0000000100010081 ||
|-
| SLPS_008.34 ||  ||  ||  || 2 || e0e87232 || 0000000100010081 ||
|-
| SLPM_862.01 ||  ||  ||  || 2 || 49d86eac || 0000000100010081 ||
|-
| SLPS_910.24 ||  ||  ||  || 2 || 88f16e6c || 0000000100010081 ||
|-
| SCPS_101.03 ||  ||  ||  || 1 || 6e516dad || 0000001800000003 ||
|-
| SLPS_009.50 ||  ||  ||  || 1 || a2a96eb5 || 0000000b00000008 ||
|-
| SLPS_030.12 ||  ||  ||  || 2 || 24857336 || 0000000e00000032 ||
|-
| SLPS_019.02 ||  ||  ||  || 5 || a0926c45 || 0000000100010100 ||
|-
| SCPS_100.03 ||  ||  ||  || 1 || ed04760d || 0000001800000003 ||
|-
| SLPS_000.28 ||  ||  ||  || 3 || 6087000 || 0000000100010100 ||
|-
| SLPS_017.49 ||  ||  ||  || 2 || b29d7153 || 0000000100010081 ||
|-
| SCPS_100.81 ||  ||  ||  || 1 || 4c9d708c || 0000000100020000 ||
|-
| SCPS_101.06 ||  ||  ||  || 1 || 53226b9c || 0000001800000003 ||
|-
| SCPS_101.07 ||  ||  ||  || 1 || 90f76b40 || 0000001800000003 ||
|-
| SCPS_100.89 ||  ||  ||  || 4 || e39f71b3 || 0000001500000001 ||
|-
| SCPS_100.90 ||  ||  ||  || 4 || 68d771a3 || 0000001500000001 ||
|-
| SCPS_100.29 ||  ||  ||  || 3 || 20e06dd4 || 0000000100010081 ||
|-
| SCPS_100.50 ||  ||  ||  || 1 || 50ec6c67 || 0000001800000003 ||
|-
| SCPS_100.31 ||  ||  ||  || 2 || 94996ff8 || 0000000100010000 ||
|-
| SCPS_100.39 ||  ||  ||  || 2 || e46f6d51 || 0000000100010000 ||
|-
| SLPS_914.44 ||  ||  ||  || 1 || b9317410 || 0000001800000003 ||
|-
| SLPS_914.45 ||  ||  ||  || 1 || c1007411 || 0000001800000003 ||
|-
| SCPS_100.77 ||  ||  ||  || 1 || 2afd6ca6 || 0000001700000001 ||
|-
| SCPS_100.78 ||  ||  ||  || 1 || e6566cfc || 0000001700000001 ||
|-
| SLPS_026.52 ||  ||  ||  || 2 || 75847283 || 0000000100010000 ||
|-
| SLPS_018.80 ||  ||  ||  || 1 || d8446e20 || 0000001800000003 ||
|-
| SLPS_018.81 ||  ||  ||  || 1 || d4c76d1b || 0000001800000003 ||
|-
| SLPS_018.82 ||  ||  ||  || 1 || 18126e07 || 0000001800000003 ||
|-
| SLPS_018.83 ||  ||  ||  || 1 || 12376e34 || 0000001800000003 ||
|-
| SIPS_600.21 ||  ||  ||  || 1 || 9bf76dc2 || 0000001800000003 ||
|-
| SLPS_000.69 ||  ||  ||  || 1 || 855d7198 || 0000001800000003 ||
|-
| SLPS_023.89 ||  ||  ||  || 1 || df2a6ce3 || 0000001800000003 ||
|-
| SLPM_860.62 ||  ||  ||  || 1 || 9f927356 || 0000001800000003 ||
|-
| SLPM_860.47 ||  ||  ||  || 1 || 156670d4 || 0000001800000003 ||
|-
| SLPM_866.46 ||  ||  ||  || 1 || b0a707c || 0000001800000003 ||
|-
| SLPS_017.93 ||  ||  ||  || 1 || 4fa46da5 || 0000001800000003 ||
|-
| SCPS_180.11 ||  ||  ||  || 1 || 286070c5 || 0000001800000003 ||
|-
| SLPS_003.59 ||  ||  ||  || 1 || 27b270f4 || 0000001800000003 ||
|-
| SIPS_600.20 ||  ||  ||  || 1 || 50ed6e47 || 0000001800000003 ||
|-
| SLPM_864.61 ||  ||  ||  || 1 || 65b76bdc || 0000001800000003 ||
|-
| SLPS_021.57 ||  ||  ||  || 1 || ff40721f || 0000001800000003 ||
|-
| SLPS_026.33 ||  ||  ||  || 1 || 1a696e28 || 0000001800000003 ||
|-
| SLPM_870.82 ||  ||  ||  || 1 || b9037041 || 0000001800000003 ||
|-
| SLPS_029.88 ||  ||  ||  || 1 || 3fad6f38 || 0000001800000003 ||
|-
| SLPS_012.99 ||  ||  ||  || 1 || e9a46c06 || 0000001800000003 ||
|-
| SLPS_004.02 ||  ||  ||  || 1 || d1c27360 || 0000001800000003 ||
|-
| SCPS_101.26 ||  ||  ||  || 1 || f25b6d85 || 0000001800000003 ||
|-
| SLPS_007.67 ||  ||  ||  || 1 || 44fb717d || 0000001800000003 ||
|-
| SLPS_011.60 ||  ||  ||  || 1 || b5d72f3 || 0000001800000003 ||
|-
| SLPS_011.61 ||  ||  ||  || 1 || 44ab7211 || 0000001800000003 ||
|-
| SLPS_600.01 ||  ||  ||  || 1 || 856073a0 || 0000001800000003 ||
|-
| SCPS_101.15 ||  ||  ||  || 1 || 56086c54 || 0000001800000003 ||
|-
| SCPS_101.33 ||  ||  ||  || 1 || 49a66cd5 || 0000001800000003 ||
|-
| SLPM_865.40 ||  ||  ||  || 1 || cb0b736e || 0000001800000003 ||
|-
| SLPS_004.09 ||  ||  ||  || 1 || 45646d3d || 0000001800000003 ||
|-
| SLPS_002.63 ||  ||  ||  || 1 || a98d735a || 0000001800000003 ||
|-
| SLPS_002.05 ||  ||  ||  || 1 || b04716c || 0000001800000003 ||
|-
| SLPS_002.07 ||  ||  ||  || 1 || 6d4770d1 || 0000001800000003 ||
|-
| SCPS_101.29 ||  ||  ||  || 1 || 9b4e6ef0 || 0000001800000003 ||
|-
| SCPS_101.38 ||  ||  ||  || 1 || 1d826df0 || 0000001800000003 ||
|-
| SLPS_911.10 ||  ||  ||  || 1 || 6b187157 || 0000001800000003 ||
|-
| SCPS_100.27 ||  ||  ||  || 1 || fdc66cce || 0000000100000080 ||
|-
| SLPS_911.80 ||  ||  ||  || 1 || 8047091 || 0000001800000003 ||
|-
| SLPM_861.48 ||  ||  ||  || 2 || 42646c0f || 0000000100010081 ||
|-
| SLPM_866.02 ||  ||  ||  || 1 || 5a746ec3 || 0000001800000003 ||
|-
| SLPS_005.82 ||  ||  ||  || 1 || ba436ecc || 0000001800000003 ||
|-
| SLPM_862.24 ||  ||  ||  || 1 || 43406d6f || 0000001500000001 ||
|-
| SLPM_862.25 ||  ||  ||  || 1 || 8f686d14 || 0000001500000001 ||
|-
| SCPS_101.18 ||  ||  ||  || 1 || 7b467173 || 0000001800000003 ||
|-
| SLPM_004.06 ||  ||  ||  || 1 || e49c6d4a || 0000001500000001 ||
|-
| SCPS_100.64 ||  ||  ||  || 1 || 3d576c00 || 0000001800000003 ||
|-
| SLPM_860.72 ||  ||  ||  || 1 || 4373729f || 0000001800000003 ||
|-
| SCPS_100.11 ||  ||  ||  || 1 || c9216ded || 0000001500000001 ||
|-
| SLPS_017.50 ||  ||  ||  || 1 || 5d6c741f || 0000001800000003 ||
|-
| SLPM_862.72 ||  ||  ||  || 1 || ab736ebf || 0000001800000003 ||
|-
| SLPM_005.88 ||  ||  ||  || 1 || 9fe47419 || 0000001800000003 ||
|-
| SLPM_010.13 ||  ||  ||  || 1 || f01b6f91 || 0000001800000003 ||
|-
| SLPM_005.55 ||  ||  ||  || 1 || 1fd7071 || 0000001800000003 ||
|-
| SLPS_014.90 ||  ||  ||  || 1 || eb317234 || 0000001800000003 ||
|-
| SLPS_013.48 ||  ||  ||  || 1 || d59c6ed3 || 0000001800000003 ||
|-
| SLPM_861.92 ||  ||  ||  || 1 || b0c26e33 || 0000001800000003 ||
|-
| SLPS_022.20 ||  ||  ||  || 1 || 82b77236 || 0000001800000003 ||
|-
| SLPS_022.55 ||  ||  ||  || 1 || 2f1972cf || 0000001800000003 ||
|-
| SLPS_012.89 ||  ||  ||  || 1 || f0f26cd8 || 0000001800000003 ||
|-
| SLPS_021.70 ||  ||  ||  || 1 || 30986d99 || 0000001800000003 ||
|-
| SLPS_022.22 ||  ||  ||  || 1 || 1e26b5e || 0000001800000003 ||
|-
| SLPS_004.97 ||  ||  ||  || 1 || d70b70ab || 0000001800000003 ||
|-
| SLPS_012.94 ||  ||  ||  || 1 || 6e836d1b || 0000001800000003 ||
|-
| SLPM_860.20 ||  ||  ||  || 1 || 75066d16 || 0000001800000003 ||
|-
| SLPM_862.63 ||  ||  ||  || 1 || b05070c5 || 0000001800000003 ||
|-
| SLPS_026.61 ||  ||  ||  || 1 || c49b6f05 || 0000001800000003 ||
|-
| SLPS_026.62 ||  ||  ||  || 1 || 6d7d6f1b || 0000001800000003 ||
|-
| SLPS_010.11 ||  ||  ||  || 1 || 2b347278 || 0000001800000003 ||
|-
| SLPS_026.20 ||  ||  ||  || 1 || 1a5b7265 || 0000001800000003 ||
|-
| SLPS_026.21 ||  ||  ||  || 1 || c3157410 || 0000001800000003 ||
|-
| SLPM_864.39 ||  ||  ||  || 1 || 42626b79 || 0000001800000003 ||
|-
| SLPM_860.18 ||  ||  ||  || 1 || b7206ec6 || 0000001800000003 ||
|-
| SLPS_014.86 ||  ||  ||  || 1 || 65697416 || 0000001800000003 ||
|-
| SLPS_014.20 ||  ||  ||  || 1 || fc4671f3 || 0000001800000003 ||
|-
| SIPS_600.22 ||  ||  ||  || 1 || c8a16e05 || 0000001800000003 ||
|-
| SCPS_100.93 ||  ||  ||  || 1 || a0546cf8 || 0000001800000003 ||
|-
| SLPS_021.67 ||  ||  ||  || 1 || e8336ff5 || 0000001800000003 ||
|-
| SLPS_012.22 ||  ||  ||  || 1 || 7d8d73b7 || 0000001800000003 ||
|-
| SLPS_012.23 ||  ||  ||  || 1 || 32ee71ee || 0000001800000003 ||
|-
| SLPS_006.17 ||  ||  ||  || 1 || d780729c || 0000001800000003 ||
|-
| SLPS_863.63 ||  ||  ||  || 1 || d40f7363 || 0000001800000003 ||
|-
| SCPS_101.12 ||  ||  ||  || 1 || 9d7e6dc3 || 0000001800000003 ||
|-
| SCPS_101.13 ||  ||  ||  || 1 || dae26dcb || 0000001800000003 ||
|-
| SCPS_101.14 ||  ||  ||  || 1 || 64306ea5 || 0000001800000003 ||
|-
| SLPS_031.60 ||  ||  ||  || 1 || 3c797083 || 0000001800000003 ||
|-
| SLPS_034.30 ||  ||  ||  || 1 || ab316db4 || 0000001800000003 ||
|-
| SLPS_034.37 ||  ||  ||  || 1 || df5e6d6f || 0000001800000003 ||
|-
| SLPS_010.57 ||  ||  ||  || 1 || 14117645 || 0000001800000003 ||
|-
| SLPS_010.58 ||  ||  ||  || 1 || e19b76e4 || 0000001800000003 ||
|-
| SLPS_010.59 ||  ||  ||  || 1 || fd807358 || 0000001800000003 ||
|-
| SLPS_010.60 ||  ||  ||  || 1 || 24ad75d6 || 0000001800000003 ||
|-
| SLPS_018.53 ||  ||  ||  || 1 || 9d4473e4 || 0000001800000003 ||
|-
| SCPS_100.47 ||  ||  ||  || 1 || 56d97048 || 0000001800000003 ||
|-
| SLPS_033.12 ||  ||  ||  || 1 || a0ce6ca9 || 0000001800000003 ||
|-
| SLPM_861.85 ||  ||  ||  || 1 || ebaf6f5d || 0000001800000003 ||
|-
| SLPM_861.86 ||  ||  ||  || 1 || 3e696c8a || 0000001800000003 ||
|-
| SLPM_861.87 ||  ||  ||  || 1 || 81d86e23 || 0000001800000003 ||
|-
| SCPS_100.99 ||  ||  ||  || 1 || 9502715f || 0000001800000003 ||
|-
| SCPS_100.73 ||  ||  ||  || 1 || 73e06e8f || 0000001800000003 ||
|-
| SLPM_866.40 ||  ||  ||  || 1 || f9db6f2d || 0000001800000003 ||
|-
| SLPS_023.00 ||  ||  ||  || 1 || 9b397352 || 0000001800000003 ||
|-
| SLPS_024.89 ||  ||  ||  || 1 || 8f4676c6 || 0000001800000003 ||
|-
| SLPS_030.87 ||  ||  ||  || 1 || 30f078ac || 0000001800000003 ||
|-
| SCPS_100.60 ||  ||  ||  || 1 || 4bca6fd6 || 0000001800000003 ||
|-
| SCPS_100.87 ||  ||  ||  || 1 || 7bfd7166 || 0000001800000003 ||
|-
| SLPS_004.00 ||  ||  ||  || 1 || 81174c2 || 0000001800000003 ||
|-
| SLPM_860.33 ||  ||  ||  || 1 || 1b467259 || 0000001800000003 ||
|-
| SLPS_007_17 ||  ||  ||  || 1 || 9f01700a || 0000001800000003 ||
|-
| SLPS_010_00 ||  ||  ||  || 1 || 123270ee || 0000001800000003 ||
|-
| SLPM_873_31 ||  ||  ||  || 1 || fda96f69 || 0000001800000003 ||
|-
| SLES_036.30 ||  ||  ||  || 1 || 2f872b9 || 0000000100000001 ||
|-
| SLES_021.70 ||  ||  ||  || 1 || 46846f41 || 0000000100000001 ||
|-
| SLES_028.65 ||  ||  ||  || 1 || 402a6cc3 || 0000000100000001 ||
|-
| SLES_037.36 ||  ||  ||  || 1 || 49f87116 || 0000000100010000 ||
|-
| SCES_016.95 ||  ||  ||  || 1 || 1cd06fbd || 0000000a000089ea ||
|-
| SLES_019.07 ||  ||  ||  || 2 || 217f73b9 || 0000000a0000c0ee ||
|-
| SLES_026.89 ||  ||  ||  || 1 || 697a6c9d || 0000000100000100 ||
|-
| SLES_013.01 ||  ||  ||  || 1 || d3e2755e || 0000000a0000b722 ||
|-
| SLES_000.99 ||  ||  ||  || 1 || 545b76f8 || 0000000100000080 ||
|-
| SLES_018.16 ||  ||  ||  || 1 || 9f5d70fb || 0000000100000080 ||
|-
| SLES_007.46 ||  ||  ||  || 1 || 9c1c6cb8 || 0000000100010000 ||
|-
| SLES_025.38 ||  ||  ||  || 1 || b90c6c42 || 00000006000000c8 ||
|-
| SCES_021.04 ||  ||  ||  || 3 || e57f6d26 || 0000000100010100 ||
|-
| SCES_003.11 ||  ||  ||  || 1 || d0317129 || 0000001800000003 ||
|-
| SCES_022.85 ||  ||  ||  || 1 || e8466f95 || 0000001800000003 ||
|-
| SCES_122.85 ||  ||  ||  || 1 || 85fe6e5c || 0000001800000003 ||
|-
| SLES_008.55 ||  ||  ||  || 1 || 236a72b5 || 0000001800000003 ||
|-
| SLES_108.55 ||  ||  ||  || 1 || 4fc67214 || 0000001800000003 ||
|-
| SLES_000.82 ||  ||  ||  || 1 || 7137379 || 0000001800000003 ||
|-
| SLES_100.82 ||  ||  ||  || 1 || b7b67390 || 0000001800000003 ||
|-
| SLES_008.09 ||  ||  ||  || 1 || a28f6de2 || 0000001800000003 ||
|-
| SCES_010.00 ||  ||  ||  || 1 || 45a36e7f || 0000001800000003 ||
|-
| SLES_024.70 ||  ||  ||  || 1 || 5c746f43 || 0000001800000003 ||
|-
| SLES_000.24 ||  ||  ||  || 1 || 20a071df || 0000001800000003 ||
|-
| SCES_028.73 ||  ||  ||  || 1 || 5aad6cad || 0000001800000003 ||
|-
| SCES_021.05 ||  ||  ||  || 1 || 24066f28 || 0000001800000003 ||
|-
| SLES_018.16 ||  ||  ||  || 1 || 9f5d70fb || 0000001800000003 ||
|-
| SLUS_013.82 ||  ||  ||  || 1 || ae74739a || 0000000100000001 ||
|-
| SLUS_010.41 ||  ||  ||  || 1 || a69371a0 || 0000000100000001 ||
|-
| SLUS_010.80 ||  ||  ||  || 1 || 868e72c8 || 0000000100000001 ||
|-
| SLUS_013.91 ||  ||  ||  || 1 || c8777043 || 0000000100010000 ||
|-
| SLUS_006.31 ||  ||  ||  || 1 || 23877090 || 0000000100000080 ||
|-
| SLUS_008.62 ||  ||  ||  || 1 || 607074ae || 0000000100000001 ||
|-
| SLUS_000.19 ||  ||  ||  || 1 || 32fe7217 || 0000000c00000001 ||
|-
| SLUS_005.53 ||  ||  ||  || 1 || 1c62708d || 0000000000000000 ||
|-
| SLUS_005.54 ||  ||  ||  || 1 || 8c9670e0 || 0000000000000000 ||
|-
| SLUS_011.04 ||  ||  ||  || 1 || 2cf66cd6 || 0000000100000100 ||
|-
| SCUS_945.08 ||  ||  ||  || 1 || 18d56d2a || 0000000300000002 ||
|-
| SCUS_949.00 ||  ||  ||  || 1 || 124f71ad || 0000000300000002 ||
|-
| SCUS_943.09 ||  ||  ||  || 2 || a9c66fe4 || 0000000300000002 ||
|-
| SCUS_941.03 ||  ||  ||  || 1 || df4c6dbb || 0000000300000002 ||
|-
| SLUS_002.13 ||  ||  ||  || 1 || cff7372 || 0000000300000002 ||
|-
| SCUS_943.02 ||  ||  ||  || 1 || 7e67394 || 0000000300000002 ||
|-
| SCUS_944.76 ||  ||  ||  || 1 || f7656d79 || 0000000300000002 ||
|-
| SCUS_943.01 ||  ||  ||  || 1 || 24f17103 || 0000000300000002 ||
|-
| SCUS_943.56 ||  ||  ||  || 1 || 776872c1 || 0000000300000002 ||
|-
| SCUS_942.40 ||  ||  ||  || 1 || 4b39703c || 0000001300000960 ||
|-
| SCUS_942.27 ||  ||  ||  || 2 || f6087105 || 0000000100010101 ||
|-
| SLUS_009.58 ||  ||  ||  || 1 || 70356caf || 0000001800000003 ||
|-
| SCUS_944.26 ||  ||  ||  || 1 || 24f37297 || 0000001800000003 ||
|-
| SCUS_944.67 ||  ||  ||  || 1 || eafb6e78 || 0000001800000003 ||
|-
| SLUS_002.92 ||  ||  ||  || 1 || 93956d84 || 0000001800000003 ||
|-
| SCUS_943.04 ||  ||  ||  || 1 || c0546d88 || 0000001800000003 ||
|-
| SCUS_944.25 ||  ||  ||  || 1 || 8d1c6ed8 || 0000001800000003 ||
|-
| SCUS_946.40 ||  ||  ||  || 1 || 652c6e7f || 0000001800000003 ||
|-
| SLUS_002.58 ||  ||  ||  || 1 || 35097499 || 0000001800000003 ||
|-
| SLUS_008.21 ||  ||  ||  || 1 || 5fa77106 || 0000001800000003 ||
|-
| SLUS_001.52 ||  ||  ||  || 1 || 59207131 || 0000001800000003 ||
|-
| SCUS_944.91 ||  ||  ||  || 1 || b5e6789a || 0000001800000003 ||
|-
| SCUS_945.84 ||  ||  ||  || 1 || 1ff37a84 || 0000001800000003 ||
|-
| SCUS_945.85 ||  ||  ||  || 1 || 9df3795c || 0000001800000003 ||
|-
| SCUS_945.86 ||  ||  ||  || 1 || 28f77a7c || 0000001800000003 ||
|-
| SLUS_009.74 ||  ||  ||  || 1 || 1a1d6f39 || 0000001800000003 ||
|-
| SLUS_012.70 ||  ||  ||  || 1 || 7c126fa0 || 0000001800000003 ||
|-
| SCUS_947.76 ||  ||  ||  || 1 || f7656d79 || 0000001800000003 ||
|-
| SLUS_004.37 ||  ||  ||  || 1 || cb24738b || 0000001800000003 ||
|-
| SLUS_002.38 ||  ||  ||  || 1 || 4c1c7189 || 0000000300000002 ||
|-
| SLUS_001.13 ||  ||  ||  || 1 || f2bd6ee2 || 0000000300000002 ||
|-
| SLUS_002.36 ||  ||  ||  || 1 || c1117292 || 0000000300000002 ||
|-
| SLUS_005.18 ||  ||  ||  || 1 || d212739f || 0000000300000002 ||
|-
| SLUS_004.40 ||  ||  ||  || 1 || e28f729a || 0000000300000002 ||
|-
| SLUS_000.61 ||  ||  ||  || 1 || e1b4752c || 0000000300000002 ||
|-
|}
 
http://www.ps3hax.net/showpost.php?p=261592&postcount=1264
 
=== Resolution ===
 
==== PSX Native resolution ====
Games are always 4:3 with any resolution between 640x480 NTSC / 640x512 PAL (the bios initialisation screen) and lower:
* Horizontal: 256 (rare e.g. Dragon Warrior VII), 320, 368 (occasionally 384 e.g. SF Zero 3 but not X-Men vs SF which was shrunk to 368), 512 or 640
* Vertical: 240 (NTSC), 256 (PAL), 480 (NTSC), 512 (PAL)
Tekken 3 uses a strange pixel area of 368x480. Regardless of the screen area, the aspect ratio is still 4:3 for all PlayStation games.
Very common resolutions : 320x240 for NTSC and 320x256 for PAL.
 
==== PS2 Native Resolution ====
Video output resolution: variable from 256x224 to 1280x1024 pixels
 
==== PS/PS2 Upscaling & smoothing ====
Options added to XMB since 1.80++ Both options can be set individually.
 
PS/PS2 upscaling:
* Off - Disable upscaled output.
* Normal - Upscale and display at a size that matches the screen size (keep 4:3 aspect ratio)
* Full - Upscale and display at full screen by changing proportions and stretching the image (to widescreen)
 
PS/PS2 smoothing:
* Off - Disable smoothing
* On - Use smoothing to reduce the roughness of the displayed image (note: when titles that support progression scan have this option turned on, they revert back to 480p with no alterations)
 
Samples: http://uk.ps3.ign.com/articles/793/793775p1.html
 
 
=== Manual starting SELF method ===
#Insert PSX/PSone disc (region/pressed doesn't matter)
#Start MultiMAN (e.g. 2.07.01++)
::*Since 02.07.05 the PSX and PS2 discs are properly detected. PSX discs will show in XMB Game Column and you can launch the PS1 game from there. It uses ps1_emu.self default (you can choose Load or Load (Net), latter uses ps1_netemu).
#Switch to filemanager mode
#Browse to /dev_flash/ps1emu
#Select either one of the ps1 emulation SELF files
 
Note: Some games run better with ps1_emu.self (e.g. Motal Kombat) while others run better with ps1_netemu.self (e.g. Resident Evil 3). If it doesn't work, try another ps1 emulation SELF file.
 
Downside: memory card options are unavailable unless you created a Virtual Memorycard ''before'' starting MultiMAN (XMB::Category Game:: Memory Card Utility (PS/PS2) > Create a PS1 memory card. Set it to Slot 1 (Press Triangle while selecting the Memory Card, then Assign it). Note: naming it "Internal Memory Card" sometimes works better than other names. MultiMAN 02.07.07 seems to solve the savegame issues.
 
==== Changes in MultiMAN 2.07.00/01 for ps1_emu handling ====
These options where needed to make above work:
* Added: LV2 access rights to use LV1 Storage Manager (syscall 864)
* Added: LV1 patch for user access to sys_storage functions (syscalls 600 to 623)
 
== ps2emu ==
[[File:Ps2_block_diagram.png|200px|thumb|right|Simplified block diagram of a PS2<br />[http://www.philvaz.com/games/PS2.htm source]]]
Note:
* not available in early Tool/DECR and Debug/DEX firmwares.
* Emulation is based on a SCPH-50000/SCPH-20401 Playstation 2 Model.
 
=== Files ===
  ps2_emu.self      (1.02++)
  ps2_gxemu.self    (1.50++)
  ps2_softemu.self  (1.90++)  1.90-1.94 (11065), 2.00-2.10 (11830), 3.15 (12840), 3.41-3.65 (13474), 3.66-3.70 (15435), 3.72-4.21 (15529)
                              (Changes: -2.50] [2.52-260] [2.70] [2.80] [3.00-3.65] [3.66-3.70] [3.74])
  ps2_netemu.self    (3.70++)
 
http://www.crocko.com/651925F44E444D8390E41A39A577BE48/ps2emu.rar
<!--// http://filerio.in/2xjqscjklj72
http://freakshare.com/files/bp53qpcy/ps2emu.rar.html //-->
 
 
dev_hdd0/tmp/game/ps2bootparam.dat
 
=== Mountpoints ===
  dev_ps2disc
  dev_ps2disc1
 
 
=== LPAR / AUTH ID's ===
{| border="1" cellspacing="0" cellpadding="5" border="#999" class="wikitable" style="border:1px solid #999; border-collapse: collapse;"
|- bgcolor="#cccccc"
! Name !! Auth ID !! Self<br />(/dev_flash/ps2emu) !! Notes
|-
| PS2_LPAR  || 0x1020000003000001 || rowspan="2" | ps2_emu.self ||
|-
| *SCE_CELLOS_SYSTEM_MGR_PS2  || 0x107000001D000001 ||
|-
| PS2_GX_LPAR || 0x1020000003000001 || rowspan="2" | ps2_gxemu.self ||
|-
| *SCE_CELLOS_SYSTEM_MGR_PS2_GX || 0x107000001D000001 ||
|-
| PS2_SW_LPAR || 0x1020000003000001 || rowspan="2" | ps2_softemu.self ||
|-
| *SCE_CELLOS_SYSTEM_MGR_PS2_SW || 0x107000001D000001 ||
|-
| PS2_NE_LPAR || 0x1020000003000001 || rowspan="2" | ps2_netemu.self ||
|-
| *SCE_CELLOS_SYSTEM_MGR_PS2_NE || 0x107000001D000001 ||
|-
|}
 
==== boot_ps2 ====
http://foxbrew.org/ps3/otheros-utils/boot_ps2.git <br />
[http://www.multiupload.com/QKK7ETPHXZ boot_ps2-src.rar (1.43 KB)] <br />
[http://www.multiupload.com/YCZ63Y6TQ5 boot_ps2.pkg (69.17 KB)] <br />
 
any chance of having this package resigned for 4.21 cfw? might be useful to see if it'll boot ps2_netemu.self LPAR.
 
(can boot ps2lpar, but also petitboot if otheros installed! 50:50 chance)
 
[http://rghost.net/42586725 boot_ps2 4.xx eboots.zip (153 KB)] <br /> installing 3.55 pkg and replacing the eboot and editing the sfo should work.
 
=== PS2 Classics Emulator (ps2_netemu.self) ===
 
Tested renaming ps2_netemu.self to ps2_emu.self on CECHB01/rogero 4.21 with dev_blind mounting via multiMAN but boots to black screen, no disc activity, but controller shuts off and is synced. No PS button menu or anything.
 
boot_ps2.pkg boots, no disc activities, then throws up an error depending if the file is resigned for 4.21 or not. (tried both a resigned and the existing version)
 
*General observations regarding PS2 Classics emulator:
** Virtual memory cards are per title based, but apparantly run through the current memory card system. The module used to manage memory cards is: vmc_savedata_plugin.sprx - Using a regular memory card that has been renamed result in a "The save data is corrupt (8XXXXXXX) error"
** Loads an epilepsy warning before PS2 logo (PS button menu appears during epilepsy warning if controller is synced)
** Does not support online functionality of PS2 titles (network configuration utility inside Full Spectrum Warrior claims no network adaptor has been found, same with Syphon Filter: The Omega Strain).
 
- Only file that is needed in the folder for PS2 Classics is "iso.bin.enc". Removing the manuals/DXT files will cause the game to boot IMMEDIATELY to the PS2 logo upon switching to 720p/starting PS2 LPAR.
 
=== Difference Emulator Usage ===
{| border="1" cellspacing="0" cellpadding="5" border="#999" class="wikitable" style="border:1px solid #999; border-collapse: collapse;"
|- bgcolor="#cccccc"
! colspan="4" | PS2_GX
|-
! Core !! Job !! Source !! Notes
|-
| SPU0 || IOP || SPU ASM ||
|-
| SPU1 || DMA || SPU ASM ||
|-
| SPU2 || Isolation || C++ Raw SPU || Used for MagicGate Encryption and others (?)
|-
| SPU3 || IPU || SPU ASM ||
|-
| SPU4 || GFIF || SPU ASM ||
|-
| SPU5 || PS2-SPU2 || C++ || about 50% load average
|-
| SPU6 || VU1 || SPU ASM ||
|-
| SPU7 || - || - || Unavailable: Factory disabled SPU
|-
| PPU:0 || PS2-Devices || C++ and PPU ASM ||
|-
| PPU:1 || Emotion Engine || C++ and PPU ASM ||
|-
| PS2-GS || Graphic Synthesizer || Hardware PS2-GS || Present in CECHC/COK-002
|-
! colspan="4" | PS2 (GS+EE)
|-
! Core !! Job !! Source !! Notes
|-
| SPU0 || IOP || SPU ASM ||
|-
| SPU2 || Isolation || C++ Raw SPU || Used for MagicGate Encryption and others (?)
|-
| - || DMA || Hardware PS2-EE ||
|-
| - || VU1 || Hardware PS2-EE ||
|-
| - || IPU || Hardware PS2-EE ||
|-
| - || GFIF || Hardware PS2-EE ||
|-
| SPU5 || PS2-SPU2 || C++ || about 50% load average
|-
| SPU7 || - || - || Unavailable: Factory disabled SPU
|-
| PPU:0 || PS2-Devices || C++ and PPU ASM ||
|-
| PPU:1 || - || - || unused?
|-
| PS2-EE || Emotion Engine || Hardware PS2-EE || Present in CECHA/COK-001 and CECHB/COK-001
|-
| PS2-GS || Graphic Synthesizer || Hardware PS2-GS || Present in CECHA/COK-001 and CECHB/COK-001
|-
! colspan="4" | PS2 Software
|-
| colspan="5" | problematic, see Mathieulh quoted below
<pre>
The main issue here is that it's mostly not doable to emulate the GS efficiently with the rest
of the hardware because the RSX is just not meant for this task and cannot emulate the GS on
its own while all the available SPUs and the PPU are already mostly fully used to emulate the
rest of the playstation 2 hardware, this explains why sony never could finish the ps2_softemu
and that it reached a stalling step.
 
I honestly have no idea on how it would be possible to get over the ps3 hardware limitations to
perform a full ps2 emulation without any of the ps2 hardware present on the console, one thing
for sure is that the emulator would have to be entirely rewritten and optimized like no other
ps3 software has been.
</pre>
|-
! Core !! Job !! Source !! Notes
|-
| SPU0 || IOP || SPU ASM ||
|-
| SPU1 || EEDMA || SPU ASM ||
|-
| SPU2 || Isolation || C++ Raw SPU || Used for MagicGate Encryption and others (?)
|-
| SPU || GSE || SPU ASM || Graphic Synthesizer
|-
| SPU3 || IPU || SPU ASM ||
|-
| SPU4 || GSEGFIF || SPU ASM ||
|-
| SPU5 || PS2-SPU2 || C++ ||
|-
| SPU6 || VU1 || SPU ASM ||
|-
| SPU7 || - || - || Unavailable: Factory disabled SPU
|-
| PPU:0 || PS2-Devices || C++ and PPU ASM ||
|-
| PPU:1 || Emotion Engine || C++ and PPU ASM ||
|-
|}
 
=== PS2 System Data (PSN HDD Tool package) ===
http://www.divshare.com/download/17366296-5ec
 
http://www.psxstore.com/en/1538/utilities/ps3/apps-psn/ps2-system-data.html
 
Content ID: IP9100-NPIA00001_00-PS2HDDSYSDAT0001
QA Digest: 2A876715D42678BB7A6E00C030C0121B
HASH: E1B0DBE46FC44190DC7A140681D8B9D4
 
http://manuals.playstation.net/document/en/ps3/current/game/hddinstall.html
 
'''Titles supporting HDD installation'''
* Nobunaga's Ambition Online and Expansion Packs
* Final Fantasy XI (disc1=SCUS97266 disc2=SCUS97269)and Expansion Discs
* SOCOM II: U.S. NAVY SEALs and Related discs included with OPM Issue 87, OPM Issue 88, OPM Issue 89, OPM Issue 90
* SOCOM 3: U.S. NAVY SEALs
* SOCOM: U.S. NAVY SEALs Combined Assault
* Front Mission Online
* Official PlayStation Magazine Issue 87, 88, 89, 90 Discs
([[Talk:Emulation#PS2_HDD | non-official ps2hdd gameslist ]])
 
There are 2 different "PS2 game" contents that can be installed in PS3 HDD (CATEGORY's [[PARAM.SFO#CATEGORY_For_HDD_contents | 2P and 2G ]]).
'''2P''' are games released from PSN as "PS2 Classic" in .PKG format, and '''2G''' are a few real "PS2 DVD discs" that can be installed in the PS3 HDD, this installation is managed by the '''PS2_system_data.pkg'''.
 
This games can be installed in real PS2 (in the internall HDD of a PS2 fat)... later this same installation was used in the [http://en.wikipedia.org/wiki/PSX_(DVR) PSX]... and when implemented in PS3 there was needed to use a '''virtual PS2 HDD''' image file keeping the same format than the original HDD used in PS2.
 
====Virtual PS2 HDD====
Game files (extracted from the real PS2 disc) are installed in a '''IMAGE.DAT''' file, this file is a 1:1 "raw copy" of a PS2 HDD.
 
This '''IMAGE.DAT''' is placed in the "install folder" (inside USRDIR folder) and his size can vary up to 10+GB
 
There are 2 different installations: the most common is used to store "game expansions" (e.g: used by additional content in SOCOM games)... the other type of installation is a "full install" and it seems the only game that uses it is "Final Fantasy XI" (main game installation when the game boots for first time + game expansions added later when needed in the same '''IMAGE.DAT''')
 
'''PS2_system_data.pkg''' itself uses an '''IMAGE.DAT''' file (6.43 MB)
 
The structure of this "virtual PS2 HDD" uses an "APA header" and a "APA MBR" + several "APA partitions", some of them containing "PFS filesystems".
 
Error message trying to boot a CATEGORY "2G" game with hand-made SFO's and invalid IMAGE.DAT file:
'''The game partition for this game cannot be created because the installed game is corrupted.'''
'''To perform this operation, delete the game, and then reinstall the game using the disc.'''
 
 
=== Getting Playstation 2 Software Emulator working ===
 
Method (on Firmware 3.55, without! Cobra-USB Dongle or Downgrade) for all consoles (fat & slim).
 
1. Replace following files on your consoles /dev_flash/
    with the ones included in this archive
    p3dwik-ps2compatfiles.rar
2. Get into Factory Service Mode (FSM Tool/Dongle)
3. Insert your Original PS2 Game Disc
4. It will run.
 
Note: Backups wont work. You're getting the compatibility of the 2.60 software emulator with all of its bugs.
 
Download: [http://www.sendspace.com/file/bm9z9v p3dwik-ps2compatfiles.rar]<br>
Possible compatibility Lists:
* http://tortuga-cove.com/forums/viewtopic.php?f=57&t=530
* http://www.ps3devwiki.com/wiki/Talk:Emulation#PS2.2FPStwo
 
=== PS2 Compat. flag ===
 
See: [[PS2_Compatibility#Software]]
 
 
=== External References ===
* [http://www.ps3hax.net/showthread.php?t=53444 PS2 Classics Algorithm By flatz]
* [http://gitorious.ps3dev.net/ps2classic c port]
 
== pspemu ==
Used for "PSP Minis" and "PSP remasters". The PSP Emulator works by accessing an encrypted ISO-9660 image.
Assuming that the mini game's directory is /dev_hdd0/game/NPEZ00000/ then the image is stored inside /USRDIR/CONTENT/EBOOT.PBP/DATA.PSAR.
(Info: 3.55's Emulator is based off an PSP 6.00-6.20 Kernel, 3.60 on 6.30 Kernel)
 
=== Files ===
  psp_emulator.self    (3.15++)
  psp_translator.self  (3.15++)
  \flash0              (3.15++)
  \flash1
  \flash2
  \flash3
  \lflash
  \release              (3.15++)
  \psp
  \ms
 
==== arguments ====
2 arguments:<br>
* argv[0]= self starting location<!--// /dev_flash/pspemu/psp_emulator.self or /app_home if you want to load custom sysman.sprx / threadman.sprx files//--><br>
* argv[1]= ISO.BIN.EDAT location
 
=== Settings ===
 
The emulator itself can be feeded with settings about the game. These settings are:
 
1) in MINIS2.EDAT (pure Text format file decrypted)
2) within the emulator defined for a bunch of games (see [[Emulation#Special_notes| Special notes]])
 
Note: The Emulator can be patched (1 Bit) to read a non encrypted MINIS2.EDAT.
 
Here are the commands what you can define for the psp emulatior:
 
{| class="wikitable sortable"
|-
! Struct !! Command !! Example !! Note
|-
| || # || #PS3DEVWIKi || Text, information, # will be ignored
|-
| || VERSION = 0x%x || VERSION = 0xFFFFFFFF ||
|-
| || BOOT_MODE = %llx || ||
|-
| || REMASTER_VERSION = 0x%x || ||
|-
| || SDRAM_SIZE = %llx || SDRAM_SIZE = 02800000 ||
|-
| || TRANS_CACHE_SIZE = %llx || ||
|-
| || HOSTFS_PATH = %lld || ||
|-
| || EXDATA_PATH = %lld || ||
|-
| || ELF_PATH = %s || ELF_PATH = disc0:/PSP_GAME/SYSDIR/EBOOT.BIN ||
|-
| || ISO_PATH = %s || ||
|-
| || VOUT_RESOLUTION_MODE = %lld || ||
|-
| || DRAWN_IMAGE_SCALE = %lld || ||
|-
| AW. {||  || || indicates LINEAR_ADRS to RECYCLE_RD_TEX optional setting following
|-
| || LINEAR_ADRS = %llx || ||
|-
| || SINGLE_BUF = %llx || ||
|-
| || DISABLE_FB_TEX = %llx || ||
|-
| || REUSE_ADRS = %llx || ||
|-
| || SINGLE_BUF2 = %llx || ||
|-
| || DECODE_WAIT = %llx || ||
|-
| || DISCARD_EDGE = %llx || ||
|-
| || RECYCLE_RD_TEX = %llx || ||
|-
| || EXT_MODE = %llx || AW.EXT_MODE = 3 ||
|-
| || THR_PIXEL_OFST = %llx || ||
|-
| || EXT_CMD = %llx || AW.EXT_CMD = 2 ||
|-
| || VRAM_MODE = %llx || AW.VRAM_MODE = 1 ||
|-
| } || || ||
|-
| AUDIO. {||  || || indicates optional SCR_NOIZ,SLEEP,DECODE_LIMIT setting following
|-
| || SRC_NOIZ = %llx || ||
|-
| || SLEEP = %llx || ||
|-
| || DECODE_LIMIT = %llx || ||
|-
| } || || ||
|-
| || VFPU_USE_FAST_VMMUL = %lld || ||
|-
| || VMX_FOR_FPU = %lld || ||
|-
| || FPU_FS_SUPPORT = %lld || ||
|-
| || MIPS_CODE_BLOCK_SIZE = %lld || ||
|-
| || ALLEGREX_DELAY = %lld || ||
|-
| || LINCOLN_START_ADDR = %llx || ||
|-
| || LINCOLN_START_SIZE = %llx || ||
|-
| || TRANSLATOR_PATCH[%lld] = {..bytes...} || ||
|-
| || OSK_ENGLISH = %lld || ||
|-
| S3D. {||  || ||
|-
| || ENABLE = %lld || S3D.ENABLE = 1 ||
|-
| || MAX_PARALLAX = %f || ||
|-
| || SCREEN_DISTANCE = %f || ||
|-
| CONV. {||  || || struct within S3D structure
|-
| || DEPTH_TYPE = %lld || ||
|-
| || GLOBAL_DEPTH1 = %f || ||
|-
| || GLOBAL_DEPTH2 = %f || ||
|-
| || LOCAL_DEPTH1 = %f || ||
|-
| || LOCAL_DEPTH2 = %f || ||
|-
| || SHIFT = %f || ||
|-
| || SIDEPANEL = %lld || ||
|-
| } || || ||
|-
| } || || ||
|-
| FILTER. {||  || ||
|-
| DOF. {||  || || depth of field filter
|-
| || GAUSSIAN = %f || ||
|-
| || DEPTH.0 = %f || ||
|-
| || DEPTH.1 = %f || ||
|-
| || FOCAL_DISTANCE = %f || ||
|-
| || FIELD_WIDTH = %f || ||
|-
| } || || ||
|-
| BLOOM. {||  || || bloom filter
|-
| || THRESHOLD.R = %f || ||
|-
| || THRESHOLD.G = %f || ||
|-
| || THRESHOLD.B = %f || ||
|-
| || THRESHOLD.VALUE = %f || ||
|-
| || ADD.R = %f || ||
|-
| || ADD.G = %f || ||
|-
| || ADD.B = %f || ||
|-
| || ADD.LOD = %f || ||
|-
| } || || ||
|-
| } || || ||
|-
| || ADDITIONAL_KEY_ASSIGN = %llx || ADDITIONAL_KEY_ASSIGN = 0000000047C6C544 ||
|-
| || SAVEDATA_USE_UPPERCASENAME = %lld || ||
|-
| || FAKE_PATH = %s || ||
|-
| || SAVEDATA_LOAD_CACHE_TARGET_NAME = %s || SAVEDATA_LOAD_CACHE_TARGET_NAME = ULJM05637DQUEST ||
|-
| || SAVEDATA_USE_PS3_SAVE = %lld || ||
|-
| || ICACHE_CONTROL = %llx || ||
|-
| || DEBUG.GRAPHICS = %lld || ||
|-
| || DEBUG.CPU_PERF_BUF_SIZE = 0x%llx || ||
|-
| || VSYNC_OFFSET_US = %lld || ||
|-
| || GPI = 0x%llx || ||
|-
| || CODE_SIZE_LIMIT = %llx || ||
|-
| || NP.COMMUNICATION_ID = %s || ||
|-
| || ADHOC_LOCAL_PEER_NUM = %llx || ||
|-
| ADHOC. {||  || ||
|-
| || EMUPA_TITLE_ID = %s || ADHOC.EMUPA_TITLE_ID = ULJM05637 ||
|-
| || EMUPA_INITIAL_SERVER = %lld || ||
|-
| || MAC_THREAD_PRIORITY = %lld || ||
|-
| || SEND_LIMIT = %lld || ||
|-
| || RECV_LIMIT = %lld || ||
|-
| || PTP_SB_SEND_EXT = %lld || ||
|-
| || PTP_SEND_INTERVAL_MIN = %lld || ||
|-
| || PTP_ACCEPT_DELAY = %lld || ||
|-
| || FLAGS = %llx || ||
|-
| } || || ||
|-
|}
 
=== Special notes ===
 
==== PSP Minis ====
On few Games there are predefined changes set for the Core within the emulator.
 
{| class="wikitable sortable"
|-
! Title ID !! Title Name !! Note
|-
| NPEZ00001 || Puzzle Scape Mini || AW.DISCARD_EDGE = 20000<br> AW.DECODE_WAIT = 10000
|-
| NPEZ00002 || Stand O'Food || DRAWN_IMAGE_SCALE = 1
|-
| NPEZ00003 || Mahjongg Artifacts Chapter 2 || AW.LINEAR_ADRS = 40<br> AW.DISABLE_FB_TEX = 100<br> AW.DISCARD_EDGE = 20000
|-
| NPEZ00021 || Pinball Dreams || DRAWN_IMAGE_SCALE = 1
|-
| NPEZ00022 || Pinball Fantasies || DRAWN_IMAGE_SCALE = 1
|-
| NPEZ00027 || Sudoku || AUDIO.SLEEP = 421
|-
| NPEZ00028 || Bowling 3D ||
|-
| NPEZ00031 || Hero Of Sparta ||
|-
| NPEZ00041 || Blast Off ||
|-
| NPEZ00046 || Brainpipe ||
|-
| NPEZ00093 || Tetris || AW.SINGLE_BUF = 80<br>AW.REUSE_ADRS = 110000
|-
| NPEZ00094 || Yummy Yummy Cooking Jam || AW.SINGLE_BUF = 880<br>AW.DECODE_WAIT = 10000
|-
| NPEZ00105 || Telegraph - Sudoku & Kakuro || DRAWN_IMAGE_SCALE= 1
|-
| NPEZ00106 || Sudoku und Kakuro: Welt Edition || DRAWN_IMAGE_SCALE = 1
|-
| NPEZ00107 || Spot The Differences! || DRAWN_IMAGE_SCALE = 1
|-
| NPEZ00108 || Finde die Unterschiede! Welt Edition || DRAWN_IMAGE_SCALE = 1
|-
| NPEZ00112 || Telegraph Crosswords || DRAWN_IMAGE_SCALE = 1
|-
| NPEZ00113 || Kreuzwortraetsel: Welt Edition || DRAWN_IMAGE_SCALE = 1
|-
| NPEZ00125 || Pallurikio ||
|-
| NPEZ00194 || Mahjongg Artifacts || AW.LINEAR_ADRS = 40<br>AW.DISABLE_FB_TEX = 100<br>AW.DISCARD_EDGE = 20000
|-
| NPEZ00219 || Arctic Adventures: Polar's Puzzles ||
|-
| NPEZ00381 || Fighting Fantasy - Talisman of death || AW.THR_PIXEL_OFST = 0
|-
| NPUZ00002 || Bowling 3D ||
|-
| NPUZ00005 || Hero Of Sparta ||
|-
| NPUZ00006 || Mahjongg Artifacts Chapter 2 || AW.LINEAR_ADRS = 40<br>AW.DISABLE_FB_TEX = 100<br>AW.DISCARD_EDGE = 20000
|-
| NPUZ00009 || Brainpipe ||
|-
| NPUZ00017 || Pinball Fantasies || DRAWN_IMAGE_SCALE = 1
|-
| NPUZ00018 || Yummy Yummy Cooking Jam || AW.SINGLE_BUF = 880<br>AW.DECODE_WAIT = 10000
|-
| NPUZ00021 || Blast Off ||
|-
| NPUZ00029 || Stand O' Food || DRAWN_IMAGE_SCALE = 1
|-
| NPUZ00034 || Spot The Differences! || DRAWN_IMAGE_SCALE = 1
|-
| NPUZ00054 || Pinball Dreams || DRAWN_IMAGE_SCALE = 1
|-
| NPUZ00058 || SuperMarket Mania || DRAWN_IMAGE_SCALE = 1
|-
| NPUZ00062 || Mahjongg Artifacts || AW.LINEAR_ADRS = 40<br>AW.DISABLE_FB_TEX = 100<br>AW.DISCARD_EDGE = 20000
|-
| NPUZ00099 || Pallurikio ||
|-
| NPUZ00114 || Arctic Adventures: Polar's Puzzles ||
|-
|}
 
==== PSP HD Remasters ====
 
And these PSP Remaster Games got a MINIS2.EDAT setting definitions for the Emulator Core.
 
{| class="wikitable sortable"
|-
! Title ID !! Title Name !! Note
|-
| NPJB40001 || Monster Hunter Portable 3rd HD Ver || VERSION = 0xFFFFFFFF<br>
S3D.ENABLE = 2<br>
SDRAM_SIZE = 02800000<br>
MIPS_CODE_BLOCK_SIZE = 8192<br> (next settings are done internally and not part of MINIS2)<br>
VSYNC_OFFSET_US = 2000<br>
ADHOC.EMUPA_TITLE_ID = ULJM05800<br>
ADHOC.EMUPA_INITIAL_SERVER = 1<br>
ADHOC_PARTY = 1<br>
|-
| BLJM85002 || K-ON Houkago Live HD Ver || VERSION = 0xFFFFFFFF<br>
AW.EXT_MODE = 3<br>
AW.EXT_CMD = 2<br>
SDRAM_SIZE = 02800000<br>
ADDITIONAL_KEY_ASSIGN = 8000000000000000<br>
S3D.ENABLE = 1<br>
ADHOC.EMUPA_TITLE_ID = ULJM05709
|-
| BLJM85003 || Shin Sangoku Musou Multi Raid 2 HD Ver || VERSION = 0xFFFFFFFF<br>
AW.EXT_MODE = 3<br>
AW.EXT_CMD = 2<br>
SDRAM_SIZE = 02800000<br>
ADDITIONAL_KEY_ASSIGN = 0000000047C6C544<br>
S3D.ENABLE = 1<br>
ADHOC.EMUPA_TITLE_ID = ULJM05637<br>
AW.VRAM_MODE = 1<br>
SAVEDATA_LOAD_CACHE_TARGET_NAME = ULJM05637DQUEST
|-
| BLJM85004 ||Eiyuu Densetsu Sora no Kiseki FC Kai HD Edition || VERSION = 0xFFFFFFFF<br>
SDRAM_SIZE = 03000000<br>
ADDITIONAL_KEY_ASSIGN = 0000000047C6C544<br>
S3D.ENABLE = 1<br>
AW.EXT_MODE = 3<br>
AW.EXT_CMD = 3<br>
ADHOC_PARTY = 0<br>
VSYNC_OFFSET_US = 2000
|}
 
DiscIDs inside emulator: http://pastie.org/pastes/4367964/

Latest revision as of 13:22, 27 February 2024

Warning
Warning
This wiki page is temporally under rebuilding, the previous content has been splitted and moved to: PS1 Emulation, PS2 Emulation, PSP Emulation
Now is going to be repurposed as an introduction to general emulation concepts and as a wiki navigation node to link to other relates pages, if you want to collaborate join the Discussion

Introduction[edit | edit source]

Links[edit | edit source]

XMB settings related with emulators[edit | edit source]

XMB game settings related with PS1, PS2, PSP emulators

See the info in the official user guide and some samples

  • In XMB Settings[Game Settings][PS/PS2 Upscaler] (added since firmware 1.80, stored in XRegistry.sys/setting/game/emuUpConvert)
    • [Off] - Disable upscaled output.
    • [Normal] - Upscale and display at a size that matches the screen size (keep 4:3 aspect ratio)
    • [Full] - Upscale and display at full screen by changing proportions and stretching the image (to widescreen)
  • In XMB Settings[Game Settings][PS/PS2 Smoothing] (added since firmware 1.80, stored in XRegistry.sys/setting/game/emuSmoothing)
    • [Off] - Disable smoothing
    • [On] - Use smoothing to reduce the roughness of the displayed image (note: when titles that support progression scan have this option turned on, they revert back to 480p with no alterations)
  • In XMB Settings[Game Settings][PSP™ Remaster - Screen Mode] (stored in XRegistry.sys/setting/game/pspemuViewmode)
    • Sets the display size of the screen during gameplay. This setting can only be used when outputting video to an HD TV
    • [Normal]
    • [Full Screen]
  • In XMB Settings[Game Settings][PSP™ Remaster - 3D Display] (stored in XRegistry.sys/setting/game/pspemu3dDisplay and pspemu3dDepthAdjust)
    • Sets whether or not to display Images in 3D.You can also adjust the depth of 3D images. This setting can only used when playing a stereoscopic 3D game using a 3D TV
    • [Off]
    • [On]
      • [7] (Strong)
      • [6]
      • [5] (Normal)
      • [4]
      • [3]
      • [2]
      • [1] (Weak)
  • In XMB Settings[Game Settings][PSP™ Remaster - Ad Hoc Mode Channel] (stored in XRegistry.sys/setting/game/pspemuAdhocModeCh)
    • Set a channel for use in ad hoc mode. Choose the same channel as the person you want to connect with
    • [Automatic]
    • [1]
    • [6]
    • [11]
  • In XMB Settings[Game Settings][PSP™ Remaster - Ad Hoc Mode] (stored in XRegistry.sys/setting/game/pspemuAdhocModeWlan)
    • Sets whether or not to use ad hoc mode over a wireless LAN
    • [Off]
    • [On]


Resolution[edit | edit source]

PS1 Native resolution[edit | edit source]

Games are always 4:3 with any resolution between 704x480 NTSC / 704x576 PAL (the bios initialisation screen) and lower:

  • Horizontal: 256 (rare e.g. Dragon Warrior VII), 320, 368 (occasionally 384 e.g. SF Zero 3 but not X-Men vs SF which was shrunk to 368), 512, 576, 600, 640 or 704
  • Vertical: 240 (NTSC), 300 (PAL), 480 (NTSC), 576 (PAL)

Tekken 3 uses a strange pixel area of 384x480. Regardless of the screen area, the aspect ratio is still 4:3 for all PlayStation games. Very common resolutions : 320x224 for NTSC and 320x256 for PAL.


PS2 Native Resolution[edit | edit source]

Video output resolution: variable from 256x224 to 1280x1024 (not 1920x1080) pixels.