-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (61 loc) · 1.67 KB
/
index.html
File metadata and controls
71 lines (61 loc) · 1.67 KB
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
<html>
<head>
<title>test</title>
<script>debug = false;
if (location.search.indexOf("debug") != -1)
{}
else
{
debug = true;
}
</script>
<script defer src="src/start.js" type="text/javascript"></script>
<script defer src="src/kernel.js" type="text/javascript"></script>
<script defer src="src/lib/updated/buckets.js" type="text/javascript"></script>
<script defer src="src/lib/updated/jdataview.js" type="text/javascript"></script>
<script defer src="src/lib/termlib/termlib.js" type="text/javascript"></script>
<script defer src="src/emulator.js" type="text/javascript"></script>
<style type="text/css">
.lh15 {
line-height: 15px;
}
.term {
font-family: "Courier New",courier,fixed,monospace;
font-size: 12px;
color: #94aad6;
background: none;
letter-spacing: 1px;
}
.term .termReverse {
color: #232e45;
background: #95a9d5;
}
table.inventory td {
padding-bottom: 20px !important;
}
tt {
font-family: courier,fixed,monospace;
color: #ccffaa;
font-size: 12px;
line-height: 15px;
}
li {
line-height: 15px;
margin-bottom: 8px !important;
}
.dimmed,.dimmed *,.dimmed * * {
background-color: #222222 !important;
color: #333333 !important;
}
</style>
</head>
<body>
<a href="info.html">Update information</a><br />
<div id="termDiv" style=" z-index:1;"></div>
<input type="button" onclick="this.disabled=true;pc.create();" value="PC create" />
<input type="button" onclick="pc.start();this.disabled=true" id="start" value="start" />
<input type="button" onclick="pc.stop();this.disabled=true;" id="stop" value="stop" />
<input type="button" onclick="location.href = location.href;" id="reset" value="reset" />
<a href="http://www.masswerk.at/termlib/">Powered by termlib</a>
</body>
</html>