-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Commodore 64 - 6502 Emulator</title>
<style>
body { margin: 0; }
.text { padding-left: 10px; }
</style>
</head>
<meta charset="utf-8" />
<doc user-select:none>
<div id="div">
<canvas
id="screen"
width="320"
height="200"
style="border:48px solid #8080FF;"
>
Your browser does not support the HTML5 canvas tag.
</canvas>
<br>
<table>
<tr id="save controls" style="visibility: collapse">
<td>
<p id="filename">Filename</p>
</td>
<td>
<button id="save">Download</button>
</td>
</tr>
</table>
<table>
<tr id="key controls" style="visibility: collapse;">
<td>
<label style="font-family: Lucida Console, Monaco, monospace;">Mobile:</label>
<input id="input" style="width:200px;" /> <!-- for input via mobile browser, TV, clipboard, etc. -->
<button id="return" style="font-family: Lucida Console, Monaco, monospace;">Return</button>
<input id="clear input" type="checkbox" checked><label for="clear input"
style="font-family: Lucida Console, Monaco, monospace;">Clear</label></input>
</td>
</tr>
</table>
</div>
</doc>
<script src="c64-roms-NOT_LICENSED.js"></script>
<script src="c64-main-ui.js"></script>
</html>