Code Monkey home page Code Monkey logo

experiment--02-implementation-of-combinational-logic-'s Introduction

Experiment--02-Implementation-of-combinational-logic

Implementation of combinational logic gates

AIM:

To implement the given logic function verify its operation in Quartus using Verilog programming. F1= A’B’C’D’+AC’D’+B’CD’+A’BCD+BC’D F2=xy’z+x’y’z+w’xy+wx’y+wxy

Equipments Required:

Hardware – PCs, Cyclone II , USB flasher

Software – Quartus prime

Theory

Logic Diagram

Procedure

Program to implement the given logic function and to verify its operations in quartus using Verilog programming. Developed by: MADHANRAJ P RegisterNumber: 23013616

CODE:

module ex_02(a,b,c,d,f1); input a,b,c,d; output f1; wire x1,x2,x3,x4,x5; assign x1=(~a)&(~b)&(~c)&(~d); assign x2=(a) &(~c)&(~d); assign x3=(~b)& (c) &(~d); assign x4=(~a)& (b) & (c) & (d); assign x5=(b) & (~c)&(d); assign f1=x1|x2|x3|x4|x5; endmodule

RTL realization:

image

TRUTH TABLE:

image

OUTPUT:

image

Result:

Thus the given logic functions are implemented using and their operations are verified using Verilog programming.

experiment--02-implementation-of-combinational-logic-'s People

Contributors

vasanthkumarch avatar madhanraj67 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.