aboutsummaryrefslogtreecommitdiff
path: root/linux-casual/mp-int/index.html
diff options
context:
space:
mode:
authorDavid Timber <dxdt@dev.snart.me>2025-04-02 23:58:14 +0200
committerDavid Timber <dxdt@dev.snart.me>2025-04-02 23:58:14 +0200
commita3cb688be29ca9d5be4a4cd2959c41d69077c8ad (patch)
treea9a98fe3e8976950f31d1f88691fa341b28cddf1 /linux-casual/mp-int/index.html
parentadece75b051d22bc13054978e66f9f30b3e9f8d6 (diff)
Move some files ...
- Moved the ripple carry adder animations impl to subdir
Diffstat (limited to 'linux-casual/mp-int/index.html')
-rw-r--r--linux-casual/mp-int/index.html65
1 files changed, 0 insertions, 65 deletions
diff --git a/linux-casual/mp-int/index.html b/linux-casual/mp-int/index.html
deleted file mode 100644
index 6c6311a..0000000
--- a/linux-casual/mp-int/index.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Multiprecision integer arithmetics, animated</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>