-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.html
35 lines (35 loc) · 1.26 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
<!doctype html>
<html>
<head>
<title>Turbo Pascal</title>
<meta charset="utf-8">
<script data-main="main" src="vendor/require.js"></script>
<link rel="stylesheet" type="text/css" href="turbo.css"/>
</head>
<body>
<div id="monitor">
<pre id="screen"></pre>
<canvas id="canvas" width="640" height="350"></canvas>
<textarea id="editor" spellcheck="false"></textarea>
</div>
<table id="belowMenu" cellspacing="0" cellpadding="0">
<tr>
<td id="closeEditor">
<a href="#">Close editor</a>
</td>
<td id="attribution">
by <a href="http://www.teamten.com/lawrence/projects/turbo_pascal_compiler/">Lawrence Kesteloot</a>
</td>
</tr>
</table>
<pre id="parseTree" class="debug-output"></pre>
<pre id="bytecode" class="debug-output"></pre>
<!-- <pre id="state" class="debug-output"></pre> -->
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-575657-1";
urchinTracker();
</script>
</body>
</html>