-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.php?name=netspeed
96 lines (92 loc) · 2.58 KB
/
games.php?name=netspeed
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Amatl</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<a href="index.php"><h2>Tny</h2></a>
<nav>
<ul class="menu">
<li><a href="about.php">About</a></li>
<li><a href="tutorial.php">Tutorial</a></li>
<li><a href="reference.php">Reference</a></li>
<li><a href="https://sr.ht/~m15o/Amatl/">Download</a></li>
<li><a href="ide.html">Web IDE</a></li>
<li><a href="launcher.php">Launcher</a></li>
<li><a href="games.php">Games</a></li>
</ul>
</nav>
</header>
<main>
<script src="amatl.js"></script>
<script>
try {
rom = msm.assemble(`2 0 CLS
LIT tgt: 55 DUP LIT 1 SET
LIT plr: 11 DUP LIT 1 SET
EQU LIT @hit JCR
LIT 8 KEY EQU LIT @right JCN
LIT 4 KEY EQU LIT @left JCN
LIT 2 KEY EQU LIT @down JCN
LIT 1 KEY EQU LIT @up JCN
BRK
hit: RND LIT @tgt STA JMPr
right: LIT @plr LDA INC LIT @plr STA BRK
left: LIT @plr LDA DEC LIT @plr STA BRK
down: LIT @plr LDA LIT 10 ADD LIT @plr STA BRK
up: LIT @plr LDA LIT 10 SUB LIT @plr STA BRK`);
console.log(rom);
} catch(e) {
errors.innerHTML = e.toString()
}
</script>
<h1>netspeed</h1>
<p id="share"></p>
<table>
<tr>
<td>Name</td>
<td>netspeed</td>
</tr>
<tr>
<td>Author</td>
<td>m15o</td>
</tr>
<tr>
<td>Instructions</td>
<td>Use arrow keys to hit the pixel!</td>
</tr>
<tr>
<td>Size</td>
<td id="size"></td>
</tr>
<tr>
<td>Source</td>
<td><pre><code>2 0 CLS
LIT tgt: 55 DUP LIT 1 SET
LIT plr: 11 DUP LIT 1 SET
EQU LIT @hit JCR
LIT 8 KEY EQU LIT @right JCN
LIT 4 KEY EQU LIT @left JCN
LIT 2 KEY EQU LIT @down JCN
LIT 1 KEY EQU LIT @up JCN
BRK
hit: RND LIT @tgt STA JMPr
right: LIT @plr LDA INC LIT @plr STA BRK
left: LIT @plr LDA DEC LIT @plr STA BRK
down: LIT @plr LDA LIT 10 ADD LIT @plr STA BRK
up: LIT @plr LDA LIT 10 SUB LIT @plr STA BRK</code></pre></td>
</tr>
</table>
<script>
document.getElementById("share").innerHTML = `<a href="emulator.php?r=${btoa(rom.map(e => String.fromCharCode(e)).join(''))}">play<a>`;
const bytes = new Uint8Array(rom);
const blob = new Blob([bytes], { type: 'application/octet-stream' });
document.getElementById("share").innerHTML += ` <a href="https://Amatl.m15o.net/${URL.createObjectURL(blob)}" download="netspeed.rom">download<a>`;
document.getElementById("size").innerHTML = rom.length + " B";
</script>
</main>
</body>
</html>