-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (29 loc) · 889 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<head>
<style>
body{
background-color: black;
margin-left: 25%; ;
}
.page{
width:640px;
height:480px;
max-width:100%;
background-color:rgb(41, 39, 39);
}
</style>
</head>
<body>
<div class="page">
<div id="game"></div>
</div>
</body>
<script src="https://www.emulatorjs.com/loader.js"></script>
<script type="text/javascript">
EJS_lightgun = false; // can be true or false
EJS_player = "#game";
EJS_gameUrl = "https://github.com/Knightsurfer/fourswords/releases/download/homebrew/fourswords.zip"; // Url to Game rom
EJS_core = "gba"; // Optional core: vbam, vbanext
EJS_startOnLoaded = true;
// Path to the data directory
EJS_oldCores = false;
</script>';