Alone we can do so little; together we can do so much.
A project for the logic design of making a calculator using logic gates on the emulator and then converting it to hardware.
Info.txt -> Information about the team members involved in the project
Calc.circ -> This file contains the entire project
buzzer.jar -> Library to play a beep sound when dividing by zero
This flow chart is used to express how to choose the correct operation to perform
graph LR
A[Selector] -- 00 --> B((Addition))
A -- 01 --> C((Subtraction))
A -- 10 --> D((Multiplication))
A -- 11 --> E((division))