-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (100 loc) · 5.45 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="button.css">
<link rel="stylesheet" href="flex.css">
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
<script src="Console.js"></script>
<script src="Speicherwerk.js"></script>
<script src="Registermaschine.js"></script>
<script src="export.js"></script>
<script src="import.js"></script>
<script>window.onload=main;</script>
<title>Assembler Studio Web</title>
</head>
<body>
<div id="ctrl" class="scroll">
<div class="hBox" id="buttonBarTop">
<a id="b1" class="button" title="Startet die Programmabarbeitung">RUN </a>
<a id="b2" class="button" title="Hält die Programmabarbeitung an">HOLD </a>
<a id="b3" class="button" title="Führt den nächsten Befehl aus" >STEP </a>
<a id="b4" class="button" title="Setzt die Registerwerte zurück" >RESET</a>
</div>
<div class="vSpace"></div>
<div class="hBox" id="statusregister">
<label class="title">Statusregister</label>
<label class="subtitle" for="nFlag">Negative-Flag: </label><input type="checkbox" id="nFlag" class="oai">
<label class="subtitle" for="zFlag">Zero-Flag: </label><input type="checkbox" id="zFlag" class="oai">
<label class="subtitle" for="oFlag">Overflow-Flag: </label><input type="checkbox" id="oFlag" class="oai">
</div>
<div class="hBox" id="akkumulator">
<label class="title" for="akk">Akkumulator</label>
<input type="number" class="cell" id="akk" value="0">
</div>
<div class="vSpace"></div>
<div class="hBox" id="befehlszähler">
<label class="title" for="cnt">Befehlszähler</label>
<input type="number" class="cell" id="cnt" value="1">
</div>
<div class="hBox" id="befehlsregister">
<label class="title" for="cmd">Befehlsregister</label>
<input type="text" class="cell" id="cmd">
</div>
<div class="vSpace"></div>
<div class="hBox" id="befehle">
<label class="title">Befehle</label>
<div class="vBox">
<div class="hBox" id="transportbefehle">
<label class="subtitle">Transportbefehle</label><span class="hSpace"></span>
<a id="LOAD" class="cmd button">LOAD </a>
<a id="LOADI" class="cmd button">LOADI</a>
<a id="STORE" class="cmd button">STORE</a>
</div>
<div class="hBox" id="arithmetischeBefehle">
<label class="subtitle">Arithmetische Befehle</label><span class="hSpace"></span>
<a id="ADD" class="cmd button">ADD </a>
<a id="ADDI" class="cmd button">ADDI</a>
<a id="SUB" class="cmd button">SUB </a>
<a id="SUBI" class="cmd button">SUBI</a>
<a id="MUL" class="cmd button">MUL </a>
<a id="MULI" class="cmd button">MULI</a>
<a id="DIV" class="cmd button">DIV </a>
<a id="DIVI" class="cmd button">DIVI</a>
</div>
<div class="hBox" id="Sprungbefehle">
<label class="subtitle">Sprungbefehle</label><span class="hSpace"></span>
<a id="JUMP" class="cmd button">JUMP </a>
<a id="JUMPZ" class="cmd button">JUMPZ</a>
<a id="JUMPN" class="cmd button">JUMPN</a>
<a id="JUMPP" class="cmd button">JUMPP</a>
</div>
<div class="hBox" id="sonstigeBefehle">
<label class="subtitle">Sonstige Befehle</label><span class="hSpace"></span>
<a id="HOLD" class="cmd button">HOLD </a>
</div>
</div>
</div>
</div>
<div class="vBox scroll" id="speicher">
<table>
<thead>
<tr>
<th style="padding-right:0.5ch;" title="Speicheradresse">SA</th>
<th>Zelle/Operator</th>
<th>Zelle/Operand</th>
</tr>
</thead>
</table>
<a onclick="$storage.createTableRow(true)" class="button">Add Cells</a>
<a onclick="export_()" class="button">Export</a>
<label style="margin:auto;color:#64DD17">Import:</label><input type="file" id="files" name="files[]" />
</div>
<div id="console" class="scroll">
<span style="color:#fff">Willkommen im AssemblerStudioWeb! Hier findest du hilfreiche Informationen und Anleitungen:</span><br>
<span style="color:#fff"><a href="intro.html" target="_blank" rel="noopener">Einführung in die Assemblerprogrammierung und Anwendung im AssemblerStudioWeb</a></span><br>
</div>
</body>
</html>