Searched Projects

Tags: Addition

project.name
0 Stars     126 Views
User:

Binary addition

Binary addition

project.name
0 Stars     115 Views
User:

Full Adder (Only NAND)

Full Adder (Only NAND)

Addition has never been so easy!


From NandGame.


project.name
0 Stars     75 Views

Binary Addition

Binary Addition

This adds numbers in Binary or something...


project.name
0 Stars     110 Views
User:

Sub Add 1 Bit Adder

Sub Add 1 Bit Adder

yes


project.name
0 Stars     117 Views

Calculator Of Div,Mul,Add,Sub

Calculator Of Div,Mul,Add,Sub

It is the final project of Dld based on Calculator in which we can operate Divsion,Multiplication,Addition,Subtraction 


project.name
0 Stars     35 Views
User:
User Image Mel

4-Bit Adder Circuit

4-Bit Adder Circuit

A 4-bit adder circuit


project.name
1 Stars     64 Views
User:
User Image Mel

8-Bit Adder Circuit

8-Bit Adder Circuit

Adder circuit for all binary numbers up to 8 digits.


project.name
1 Stars     67 Views
User:
User Image Mel

4-Bit Compact Adder Circuit

4-Bit Compact Adder Circuit

A more compact version of my previous 4-Bit Adder


project.name
0 Stars     107 Views
User:
User Image Mel

8-Bit Adder Circuit (with Subcircuits)

8-Bit Adder Circuit (with Subcircuits)

An 8-Bit Adder Circuit made with subcircuits


project.name
0 Stars     32 Views

Addition of binary numbers using full adder

Addition of binary numbers using full adder

Created by:

1604_Anjali_Astake

1615_Vaishnavi_Deokar

1624_Shivanjali_Gaikwad


project.name
0 Stars     79 Views
User:
User Image Mel

4-Bit Adder Subtractor

4-Bit Adder Subtractor

A 4-Bit Adder-Subtractor. It adds and subtracts


project.name
0 Stars     78 Views
User:
User Image Mel

4-Bit NAND Adder

4-Bit NAND Adder

A 4-Bit Adder comprised entirely of NAND gates.


project.name
0 Stars     50 Views

8-bit Addition

8-bit Addition

My first dive into logic gates! I learned how to add two 8-bit numbers together with an overflow value added. 


project.name
0 Stars     49 Views
User:

project.name
0 Stars     35 Views
User:

8 Bit Binary Calculator

8 Bit Binary Calculator

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.


project.name
0 Stars     12 Views
User:

Base-16 Calculator

Base-16 Calculator

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.


project.name
0 Stars     19 Views
User:

2's Complement Calculator

2's Complement Calculator

Hello!


I was recently curious about the 2's complement of a binary number, so what better to do than make one? This is how to find the 2's complement: Convert the decimal number to binary. If it is positive, then put a 0 at the start. Then, inverse the number and add 1. For example, 28 is 01110. Inverse this and add 1 to get 10010. This is the 2's complement of 28.