Verilog Code For Demux

  • July 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Verilog Code For Demux as PDF for free.

More details

  • Words: 28
  • Pages: 2
VERILOG CODE FOR 1:4DEMUX module dem11(y,a,b); output [3:0] y; input a,b; not(a_bar,a),(b_bar,b); and(y[0],a_bar,b_bar),(y[1],a_bar,b),(y[2],a,b_bar),(y[3],a,b); endmodule

(a)

(b) FIG SCHEMATIC DIAGRAM FOR 1:4 DEMUX

FIG SCHEMATIC DIAGRAM FOR 1:4 DEMUX

Related Documents

Verilog
April 2020 25
Verilog
November 2019 28
Verilog
June 2020 19