-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 851 Bytes
/
index.html
File metadata and controls
32 lines (30 loc) · 851 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>PS4Brew 5.05</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<body style="margin:0;">
<script>
window.didload = 0;
window.didpost = 0;
window.onload = function () {
window.didload = 1;
if (window.didpost == 1)
setTimeout(window.stage2, 1500);
}
window.postExpl = function () {
window.didpost = 1;
if (window.didload == 1)
setTimeout(window.stage2, 1500);
}
</script>
<script src="./jquery.min.js"></script>
<script src="./rop.js"></script>
<script src="./syscalls.js"></script>
<script src="./expl.js"></script>
<script src="./userland.js"></script>
<script src="./homebrew.js"></script>
<script src="./mira.js"></script>
<pre id="console"></pre>
</body>
</html>