mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-15 18:12:08 -05:00
26 lines
739 B
HTML
26 lines
739 B
HTML
<html>
|
|
<head>
|
|
<script src="/js/all.js"></script>
|
|
<title>Doom 64</title>
|
|
<style>
|
|
body, html {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="width:100%;height:100%;max-width:100%">
|
|
<div id="game"></div>
|
|
</div>
|
|
<script>
|
|
EJS_player = "#game";
|
|
EJS_core = "n64";
|
|
EJS_color = "#0064ff";
|
|
EJS_startOnLoaded = true;
|
|
EJS_pathtodata = "https://cdn.emulatorjs.org/stable/data/";
|
|
EJS_gameUrl = "Doom 64 (USA) (Rev A).n64";
|
|
</script>
|
|
<script src="https://cdn.emulatorjs.org/stable/data/loader.js"></script>
|
|
</html>
|