-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.37 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
<!DOCTYPE HTML>
<html>
<head>
<title>beebide</title>
<link href="beebide.css" rel="stylesheet">
<script data-main="main" src="vendor/requirejs/require.js"></script>
</head>
<body>
<div id="root"></div>
<div style="display:none">
<div id="editor">
<div class="editor"></div>
</div>
<div id="emulator">
<canvas class="screen" width="896" height="600" style:'display: inline-block;'></canvas><br>
<button class="btn" id="build" tabindex="-1" onmousedown="event.preventDefault();" onclick="buildAndBoot()">Build & Boot</button>
<button class="btn" id="break" tabindex="-1" onmousedown="event.preventDefault();" onclick="emulator.breakIn()">Break</button>
<button class="btn" id="stepIn" tabindex="-1" onmousedown="event.preventDefault();" disabled="true" onclick="emulator.stepIn()">Step In</button>
<button class="btn" id="stepOver" tabindex="-1" onmousedown="event.preventDefault();" disabled="true" onclick="emulator.stepOver()">Step Over</button>
<button class="btn" id="stepOut" tabindex="-1" onmousedown="event.preventDefault();" disabled="true" onclick="emulator.stepOut()">Step Out</button>
</div>
<div id="tree">
<div class="tree"></div>
</div>
<div id="console">
<div class="console" contenteditable="false" onkeypress="event.preventDefault();"></div>
</div>
</div>
</body>
</html>