
* feat: EmulatorJS support - importing of BIOS files #15 * feat: added Bios controller to make Bios files available to the emulator, also resolved SNES identification issues (see: #25) * feat: added firmware selector to emulator screen * refactor: moved EmulatorJS to a subfolder * feat: added firmware image availability page
25 lines
616 B
HTML
25 lines
616 B
HTML
<div style='width:640px;height:480px;max-width:100%'>
|
|
<div id='game'></div>
|
|
</div>
|
|
|
|
<script type='text/javascript'>
|
|
EJS_player = '#game';
|
|
|
|
// Can also be fceumm or nestopia
|
|
EJS_core = urlParams.get('core');
|
|
|
|
// Lightgun
|
|
EJS_lightgun = false; // can be true or false
|
|
|
|
// URL to BIOS file
|
|
EJS_biosUrl = emuBios;
|
|
|
|
// URL to Game rom
|
|
EJS_gameUrl = decodeURIComponent(urlParams.get('rompath'));
|
|
|
|
// Path to the data directory
|
|
EJS_pathtodata = '/emulators/EmulatorJS/data/';
|
|
|
|
EJS_DEBUG_XX = true;
|
|
</script>
|
|
<script src='/emulators/EmulatorJS/data/loader.js'></script> |