Simple 2-bit Calculator with a decoder for a 7 segment display.
A (currently) 4-bit adder/subtractor
Currently working on implementing multiplication, division, and a base-10 output
Format: A +/- B
Version Log
vRevamp.logicChange.reformat
v1.0.0-v1.0.2:
Base versions (4bit)
v1.1.0:
Now shuts down output when error occurs, added compact version
(I just like adding unnecessary version logs)
It's a calculator that can do addition, subtraction, and multiplication (of very small numbers)
Hello!
This is an (almost) 1 Byte Calculator. I put a lot of effort into this, so I hope you like it! The calculator can add, subtract, multiply, and divide. I don't know how to use displays, so I'm sorry about that.
How it works:
Input 2 binary numbers and click the solve button to output another number.
The addition works by, of course, adding the numbers. For example, 11 + 110 = 1001 (3+6=9). The subtraction works by inversing the first digit of the addition. The multiplication works by adding that number when one appears and adding 0's accordingly. 11 x 110 = 110 + 1100 = 10010 ( 3 x 6 = 18 ) And the division works via subtraction, meaning, for example, 16/5 = 5 x 3 + 1. In this equation, 3 is the answer, and 1 is the remainder.
Hello!
Now that I have learned how to use bit splitters, I had an idea to create a hexadecimal calculator! This one can also perform addition, subtraction, multiplication, and division! I highly recommend checking out my binary calculator first, before the hexadecimal one.
Instructions:
Add = A
Subtract = S
Multiply = M
Divide = D
Change Row = R
Clear Number = C
Clear Operator = O
Undo Last Number = U
Numbers = 1-9
There are some errors with the division I am currently working on it.