-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.49 KB
/
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
<!DOCTYPE html>
<html>
<head>
<title> JavaScript GameBoy Emulator </title>
<meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" />
<meta name = "gameboy,emulator,javascript" />
<meta name = "GameBoy emulator written in JavaScript" />
<link rel = "stylesheet" type = "text/css" href = "style/style.css" />
<!-- Dependencies -->
<script type = "text/javascript" src = "lib/jquery.js" > </script>
<!-- Emulator Core -->
<script type = "text/javascript" src = "script/cpu.js" > </script>
<script type = "text/javascript" src = "script/ram.js" > </script>
<script type = "text/javascript" src = "script/rom.js" > </script>
<script type = "text/javascript" src = "script/lcd.js" > </script>
<script type = "text/javascript" src = "script/emu.js" > </script>
<script type = "text/javascript" src = "script/timer.js" > </script>
<!-- Cartridge controllers -->
<script type = "text/javascript" src = "script/cart/mbc1.js" > </script>
<script type = "text/javascript" src = "script/cart/mbc2.js" > </script>
<script type = "text/javascript" src = "script/cart/mbc3.js" > </script>
</head>
<body>
<div id = "holder">
<canvas id = "lcd" width = "160" height = "144"></canvas>
<div id = "control">
<input type = "button" value = "Start" id = "btn-start" />
<input type = "button" value = "Stop" id = "btn-stop" />
<input type = "file" id = "btn-rom" />
</div>
</div>
</body>
</html>