-
Notifications
You must be signed in to change notification settings - Fork 1
/
zmach.html
29 lines (29 loc) · 1008 Bytes
/
zmach.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
<!doctype html>
<html>
<head>
<title>Z-code interactive disassembler</title>
<script src="jquery-2.2.0.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="zmach.css" type="text/css">
<script src="reloop.js"></script>
<script src="opt.js"></script>
<script src="zmach.js"></script>
<!--<script src="zork1.z5.js"></script>-->
<!--<script src="ZTUU.z5.js"></script>-->
<!--<script src="hhgtg.z5.js"></script>-->
<script src="zork-SGOLD-Z.z5.js"></script>
</head>
<body>
<div>
<div class="debug">
<div>
<input id="dump_routines" type="button" value="Dump routines">
</div>
<div id="debug_messages"></div>
</div>
<div id="mainscreen">
</div>
</div>
</body>
</html>