Formatted PS1 Doc

This commit is contained in:
ElectronicsArchiver 2022-03-26 16:31:19 -04:00
parent 30b319731d
commit 002b83f39d

View file

@ -1,35 +1,57 @@
<h2>PlayStation</h2>
# PlayStation
Code example
## Code example
```html
<div style='width:640px;height:480px;max-width:100%'>
<div id='game'></div>
</div>
<script type='text/javascript'>
```
<div style="width:640px;height:480px;max-width:100%">
<div id="game"></div>
</div>
<script type="text/javascript">
EJS_player = '#game';
EJS_biosUrl = ''; // Url to Bios file
EJS_gameUrl = ''; // Url to Game rom
EJS_core = 'psx';
EJS_pathtodata = 'data/'; //path to all of the wasm and js files. MUST all be in the same directory!!
// URL to Bios file
EJS_biosUrl = '';
// URL to Game rom
EJS_gameUrl = '';
/*
* Path to the WASM / JS files
* HAS TO BE in the same directory.
*/
EJS_pathtodata = 'data/';
</script>
<script src="data/loader.js"></script>
```
Your rom MUST have one of the following extensions
<script src='data/loader.js'></script>
```
.bin
.cue
.img
.mdf
.pbp
.toc
.cbn
.m3u
.ccd
```
You can find the PlayStation 1 JP BIOS by looking up the md5 sum which is `8dd7d5296a650fac7319bce665a6a53c`
You can find the PlayStation 1 US BIOS by looking up the md5 sum which is `490f666e1afb15b7362b406ed1cea246`
## ROM Type
Your **ROM** can have the following types:
- `bin`
- `cue`
- `img`
- `mdf`
- `pbp`
- `toc`
- `cbn`
- `m3u`
- `ccd`
## BIOS
You can search for the BIOS you need by utilizing the **MD5** checksum.
| Type | MD5 Checksum |
|------|--------------|
| PlayStation 1 JP | `8dd7d5296a650fac7319bce665a6a53c`
| PlayStation 1 US | `490f666e1afb15b7362b406ed1cea246`
| PlayStation 1 EU | `32736f17079d0b2b7024407c39bd3050`
You can find the PlayStation 1 EU BIOS by looking up the md5 sum which is `32736f17079d0b2b7024407c39bd3050`