-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 875 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>RIjSC demo</title>
<meta name="viewport" content="width=device-width"/>
<meta charset="UTF-8">
<script type="text/javascript" src="js/rijsc_controller.js"></script>
<link href="css/main.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<header>Output:<span id="output"></span>
</header>
<div>
<div>
<button id="sampleButton">Load sample program</button>
<textarea id="programCode" spellcheck="false" cols="22" rows="50"></textarea>
<br>
<button id="button">Upload program</button>
<button id="startbutton">Start CPU</button>
</div>
<div>
<input type="checkbox" id="isFrameOutput" name="isFrameOutput">
<label for="isFrameOutput">Output to screen</label>
<br>
<canvas id="screen" width="100" height="100"></canvas>
</div>
</div>
</body>
</html>