Git Product home page Git Product logo

study-of-basic-digital-ic-s-and-verification-of-truth-tables-for-different-logic-gates-realization-'s Introduction

Study-of-basic-digital-IC-s-and-verification-of-truth-tables-for-different-logic-gates-realization-

AIM:

To study about the different digital IC’s and to verify the truth table in Quartus for the basic logic gates using Verilog programming.

Equipments Required:

Hardware – PCs, Cyclone II , USB flasher Software – Quartus prime

Theory

Introduction Logic gates are the basic building blocks of any digital system. Logic gates are electronic circuits having one or more than one input and only one output. The relationship between the input and the output is based on a certain logic. Based on this, logic gates are named as

AND gate OR gate NOT gate NAND gate NOR gate Ex-OR gate Ex-NOR gate

  1. AND gate The AND gate is an electronic circuit that gives a high output (1) only if all its inputs are high. A dot (.) is used to show the AND operation i.e. A.B or can be written as AB

Y= A.B

  1. OR gate The OR gate is an electronic circuit that gives a high output (1) if one or more of its inputs are high. A plus (+) is used to show the OR operation.

Y= A+B

  1. NOT gate The NOT gate is an electronic circuit that produces an inverted version of the input at its output. It is also known as an inverter. If the input variable is A, the inverted output is known as NOT A. This is also shown as A' or A with a bar over the top, as shown at the outputs.

Y= A'

  1. NAND gate This is a NOT-AND gate which is equal to an AND gate followed by a NOT gate. The outputs of all NAND gates are high if any of the inputs are low. The symbol is an AND gate with a small circle on the output. The small circle represents inversion.

Y= (AB)’

  1. NOR gate This is a NOT-OR gate which is equal to an OR gate followed by a NOT gate. The outputs of all NOR gates are low if any of the inputs are high. The symbol is an OR gate with a small circle on the output. The small circle represents inversion.

Y= (A+B)’

  1. Ex-OR gate The 'Exclusive-OR' gate is a circuit which will give a high output if either, but not both of its two inputs are high. An encircled plus sign (⊕) is used to show the Ex-OR operation.

Y= A⊕B

  1. Ex-NOR gate The 'Exclusive-NOR' gate circuit does the opposite to the EX-OR gate. It will give a low output if either, but not both of its two inputs are high. The symbol is an EX-OR gate with a small circle on the output. The small circle represents inversion.

Y= A⊕B

Procedure

  1. Create a New Project:

    • Open Quartus and create a new project by selecting "File" > "New Project Wizard."
    • Follow the wizard's instructions to set up your project, including specifying the project name, location, and target device (FPGA).
  2. Create a New Design File:

    • Once the project is created, right-click on the project name in the Project Navigator and select "Add New File."
    • Choose "Verilog HDL File" or "VHDL File," depending on your chosen hardware description language.
  3. Write the Combinational Logic Code:

    • Open the newly created Verilog or VHDL file and write the code for your combinational logic.
  4. Compile the Project:

    • To compile the project, click on "Processing" > "Start Compilation" in the menu.
    • Quartus will analyze your code, synthesize it into a netlist, and perform optimizations based on your target FPGA device.
  5. Analyze and Fix Errors:*

    • If there are any errors or warnings during the compilation process, Quartus will display them in the Messages window.
    • Review and fix any issues in your code if necessary.
    • View the RTL diagram.

6.*Verification:

  • Click on "File" > "New" > "Verification/Debugging Files" > "University Program VWF".
  • Once Waveform is created Right Click on the Input/Output Panel > " Insert Node or Bus" > Click on Node Finder > Click On "List" > Select All.
  • Give the Input Combinations according to the Truth Table amd then simulate the Output Waveform.

Program:

module Ex1(a,b,yand,yor,ynot,yxor,ynand,ynor,yxnor);
input a,b;
output yand,yor,ynot,yxor,ynand,ynor,yxnor;
and (yand,a,b);
or (yor,a,b);
not (ynot,a);
xor (yxor,a,b);
nand (ynand,a,b);
nor (ynor,a,b);
xnor (yxnor,a,b);
endmodule

Program to verify the truth table in quartus for the basic logic gates using Verilog programming.

Developed by: S.Kishore

RegisterNumber: 212222240050

Logic symbol & Truthtable

image

RTL :

image

Output:

image

Result:

Thus the different digital IC’s are studied and the truth table for different logic gates are verified.

study-of-basic-digital-ic-s-and-verification-of-truth-tables-for-different-logic-gates-realization-'s People

Contributors

vasanthkumarch avatar kishore2o avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.