Retro Gaming Online Emulator

SNES

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 = 'snes';
    EJS_mouse = false; // SNES Mouse
    EJS_multitap = false; // SNES Multitap
</script>
<script src="https://www.emulatorjs.com/loader.js"></script>

Extensions

Content that can be loaded by the this core have the following file extensions:

  • .smc
  • .fig
  • .sfc
  • .gd3
  • .gd7
  • .dx2
  • .bsx
  • .swc

BSNES 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 = 'bsnes';
</script>
<script src="https://www.emulatorjs.com/loader.js"></script>