-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
15 lines (15 loc) · 886 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<title>Intel 8080 emulator in JS</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<script src="input.js"></script>
<script src="screen.js"></script>
<script src="8080.js"></script>
<script src="main.js"></script>
<p>An Intel 8080 CPU emulator in JavaScript running Space Invaders ROM.<br>Game is running in demo mode by default.<br><br><b>Single Player Mode :</b><br><br>Press (C) to start the single player mode<br>Press (S) to start.<br><br><b>MultiPlayer Mode :</b><br><br>Press (C) two times to get into multiplayer mode.<br>Press (S) to start.<br><br><b>Keyboard shortcuts :</b><br><br>P : Pause<br>R : Reset<br>LEFT : Move left<br>RIGHT : Move right<br>SPACE : Shoot</p>
<p>Source: <a href='https://github.com/thibaultimbert/Intel8080' target='_blank'>https://github.com/thibaultimbert/Intel8080</a></p>
</body>
</html>