EmulatorJS/a.html
2023-07-18 07:52:32 -05:00

28 lines
886 B
HTML

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div style='width:640px;height:480px;max-width:100%'>
<div id='game'></div>
</div>
<script type='text/javascript'>
EJS_player = '#game';
EJS_core = 'nes';
EJS_gameUrl = 'roms/mega_mountain.nes';
EJS_DEBUG_XX = true;
//EJS_AdUrl = "https://www.google.com/search?igu=1";
EJS_Buttons = {
restart: false
}
EJS_volume = 1;
EJS_startOnLoaded = true;
//EJS_loadStateURL = "mega_mountain.state";
//EJS_netplayServer = "http://"+window.location.hostname+":3000/";
EJS_gameID = 1;
</script>
<script src='data/loader.js'></script>
</body>
</html>