blob: 3e760eb379fb513f73288f38b06dd8ce8100c8d0 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Ripple-carry adder, interactive</title>
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
</head>
<body>
<p class="svg-container">
<object type="image/svg+xml" id="svg_the-math" data="the-math.svg"></object>
</p>
<p class="svg-container">
<object type="image/svg+xml" id="svg_adder" data="animation-skel.svg"></object>
</p>
<hr>
<h2>Programmer</h2>
<div class="op-console-container">
<fieldset>
<legend>OP</legend>
<div title="Add A and B, store result in A">
<input type="radio" id="radio_op-add" name="op" value="add" checked>
<label for="radio_op-add">ADD</label>
</div>
<div title="Add A and B with the carry bit from the state register, store result in A">
<input type="radio" id="radio_op-adc" name="op" value="adc">
<label for="radio_op-add">ADC</label>
</div>
</fieldset>
<fieldset class="operand-container">
<legend>Operand</legend>
<div>
<label for="txt_operand-a">A</label>
<input type="text" size="10" id="txt_operand-a">
<span class="ovf" id="span_operand-a">🛑 error</span>
</div>
<div>
<label for="txt_operand-b">B</label>
<input type="text" size="10" id="txt_operand-b">
<span class="ovf" id="span_operand-b">🛑 error</span>
</div>
</fieldset>
<fieldset>
<legend>ACT</legend>
<button type="button" id="btn_exec" title="Start the animation">Execute</button><br>
<button type="button" id="btn_reset" title="Reset the animation">Reset</button>
</fieldset>
<p>
<fieldset>
<legend>Animations</legend>
<label for="txt_state-animations">Animations</label>
<input type="text" id="txt_state-animations" size="30"><br>
<label for="txt_state-change-delay">State change delay(ms)</label>
<input type="number" id="txt_state-change-delay"><br>
<button type="button" id="btn_animation-defaults">Defaults</button>
</fieldset>
</div>
</body>
</html>
|