Formatted SMS Doc

This commit is contained in:
ElectronicsArchiver 2022-03-26 16:40:44 -04:00
parent 569371c8f0
commit a5bcea829a

View file

@ -1,24 +1,45 @@
<h2>Sega Master System</h2>
Code example
```
<div style="width:640px;height:480px;max-width:100%">
<div id="game"></div>
</div>
<script type="text/javascript">
EJS_player = '#game';
EJS_gameUrl = ''; // Url to Game rom
EJS_core = 'segaMS';
EJS_pathtodata = 'data/'; //path to all of the wasm and js files. MUST all be in the same directory!!
</script>
<script src="data/loader.js"></script>
```
# Sega Master System
I do not know the file extension limits for this system.
bios_E.sms : MasterSystem EU BIOS (bootrom) - Optional 840481177270d5642a14ca71ee72844c
## Code example
bios_U.sms : MasterSystem US BIOS (bootrom) - Optional 840481177270d5642a14ca71ee72844c
```html
<div style='width:640px;height:480px;max-width:100%'>
<div id='game'></div>
</div>
bios_J.sms : MasterSystem JP BIOS (bootrom) - Optional 24a519c53f67b00640d0048ef7089105
<script type='text/javascript'>
EJS_player = '#game';
EJS_core = 'segaMS';
// 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>
```
## BIOS
You can search for the BIOS you need by utilizing the **MD5** checksum.
(bootrom) - Optional
| Name | MD5 Checksum | Description |
|------|--------------|-------------|
| `bios_E.sms` | `840481177270d5642a14ca71ee72844c` | MasterSystem EU BIOS
| `bios_U.sms` | `840481177270d5642a14ca71ee72844c` | MasterSystem US BIOS
| `bios_J.sms` | `24a519c53f67b00640d0048ef7089105` | MasterSystem JP BIOS
<!-- EU & US have the same checksum? -->