Advertisement

Q. 3.36: Draw the logic diagram of the digital circuit specified by the following Verilog descriptio

Q. 3.36: Draw the logic diagram of the digital circuit specified by the following Verilog descriptio Q. 3.36: Draw the logic diagram of the digital circuit specified by the following Verilog description:
(a) module Circuit_A (A, B, C, D, F);
input A, B, C, D;
output F;
wire w, x, y, z, a, d;
or (x, B, C, d); and (y, a ,C); and (w, z ,B); and (z, y, A);
or (F, x, w); not (a, A); not (d, D);
endmodule
(b) module Circuit_B (F1, F2, F3, A0, A1, B0, B1); output F1, F2, F3;
input A0, A1, B0, B1;
nor (F1, F2, F3);
or (F2, w1, w2, w3); and (F3, w4, w5); and (w1, w6, B1);
or (w2, w6, w7, B0); and (w3, w7, B0, B1); not (w6, A1);
not (w7, A0); xor (w4, A1, B1); xnor (w5, A0, B0);
endmodule
(c) module Circuit_C (y1, y2, y3, a, b); output y1, y2, y3;
input a, b;
assign y1 = a & b; and (y2, a, b); assign y3 = a && b;
endmodule

Please subscribe to my channel. Importance is given to making concepts easy.



Wish you success,

Dhiman Kakati

(let's learn together)

The,Draw,Logic,Diagram,Of,Digital,Circuit,Specified,By,Following,Verilog,Description,Draw the logic diagram of the digital circuit specified by the following verilog description,

Post a Comment

0 Comments