EmulatorJS/a.html
2023-07-17 09:00:32 -05:00

29 lines
896 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 = {
mute: false,
volume: true,
}*/
EJS_volume = 1;
EJS_startOnLoaded = true;
//EJS_loadStateURL = "mega_mountain.state";
EJS_netplayServer = "http://127.0.0.1:3000";
EJS_gameID = 1;
</script>
<script src='data/loader.js'></script>
</body>
</html>