Searched Projects

Tags: Learn

project.name
0 Stars     12 Views
User:

Uppgift1.1

Uppgift1.1

basic stuff


project.name
0 Stars     11 Views
User:

uppgift1.2

uppgift1.2

basic stuff


project.name
0 Stars     10 Views
User:

Uppgift1.3

Uppgift1.3

unfinished


project.name
0 Stars     9 Views
User:

Uppgift2

Uppgift2

basic counter


project.name
0 Stars     12 Views
User:

Learning

Learning

I am just trying to learn basics


project.name
1 Stars     8 Views
User:

Half-Adder

Half-Adder

A Half-Adder is a type of combinational logic circuit formed by connecting an XOR gate and an AND gate. It takes two binary inputs, A and B, and computes their sum and carry.
The XOR gate output represents the sum of the binary digits, while the AND gate output represents the carry. This arrangement enables the Half-Adder to perform basic binary addition operations. The Boolean functions for the circuit are expressed below:

Sum =  A
Carry =  A . B


project.name
1 Stars     6 Views
User:

Full-Adder

Full-Adder

A Full-Adder is a type of combinational logic circuit featuring three inputs and two outputs. It is constructed by linking two EX-OR gates, three AND gates, and two OR gates.

The Boolean functions for the circuit are expressed below:

Sum =  A B ⊕ C                                                                                                                                                                                                                           

Carry =  ( A . B ) + ( A . C ) + ( B . C )