EmulatorJS/a.html

30 lines
916 B
HTML
Raw Normal View History

2023-07-11 13:40:42 +00:00
<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>
2023-07-04 03:56:43 +00:00
2023-07-11 13:40:42 +00:00
<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;
2023-07-15 20:10:56 +00:00
EJS_startOnLoaded = true;
2023-07-11 13:40:42 +00:00
//EJS_loadStateURL = "mega_mountain.state";
2023-07-17 16:10:34 +00:00
EJS_netplayServer = "http://"+window.location.hostname+":3000/";
2023-07-17 14:00:32 +00:00
EJS_gameID = 1;
2023-07-11 13:40:42 +00:00
</script>
<script src='data/loader.js'></script>
</body>
</html>