EmulatorJS/docs/Systems/Sega CD.md

50 lines
1 KiB
Markdown
Raw Normal View History

2022-03-26 20:34:37 +00:00
# Sega CD
2021-12-20 16:30:29 +00:00
2022-03-26 20:34:37 +00:00
I do not know the file extension limits for this system.
## Code example
```html
<div style='width:640px;height:480px;max-width:100%'>
<div id='game'></div>
</div>
<script type='text/javascript'>
2021-12-20 16:30:29 +00:00
EJS_player = '#game';
2023-07-22 23:22:55 +00:00
// Can also be picodrive or genesis_plus_gx
2021-12-20 16:30:29 +00:00
EJS_core = 'segaCD';
2022-03-26 20:34:37 +00:00
// URL to Game rom
EJS_gameUrl = '';
/*
* Path to the WASM / JS files
* HAS TO BE in the same directory.
*/
EJS_pathtodata = 'data/';
2021-12-20 16:30:29 +00:00
</script>
2022-03-26 20:34:37 +00:00
<script src='data/loader.js'></script>
2021-12-20 16:30:29 +00:00
```
2023-07-22 23:22:55 +00:00
### BIOS
| File Name | Description | md5sum |
| ----------- | ------------- | ----------- |
| bios_CD_E.bin | MegaCD EU BIOS - Required | `e66fa1dc5820d254611fdcdba0662372` |
| bios_CD_U.bin | SegaCD US BIOS - Required | `2efd74e3232ff260e371b99f84024f7f` |
| bios_CD_J.bin | MegaCD JP BIOS - Required | `278a9397d192149e84e820ac621a8edd` |
2021-12-20 16:30:29 +00:00
2023-07-22 23:22:55 +00:00
### CORES
2021-12-20 16:30:29 +00:00
2023-07-22 23:22:55 +00:00
The *segaCD* system supports 2 cores
- `genesis_plus_gx`
- `picodrive`
2021-12-20 16:30:29 +00:00
2023-07-22 23:22:55 +00:00
If set to `segaCD`, emulator will use the `genesis_plus_gx` core.