-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunge.html
30 lines (27 loc) · 868 Bytes
/
funge.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
<html>
<head>
<title>Coffunge</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="funge.js"></script>
</head>
<body>
<form>
<div id="state">
PC: <input type="text" class="cell" id="pcx" maxlength="1" /> <input type="text" class="cell" id="pcy" maxlength="1" /> Instruction: <input type="text" class="cell" id="instruction" maxlength="1" />
</div>
<div id="container">
</div>
<div id="code_div">
<input type="button" value="Reset" onclick="reset_code()">
<input type="button" value="Run" onclick="run_code()">
<input type="button" value="Tick" onclick="tick_code()">
</div>
<div id="output_div">
<h2>Output:</h2>
<textarea id="output" cols="80" rows="5">
</textarea>
</div>
</form>
</body>
</html>