DSD__Q3(B)_L13L14_23BEC0179_ROOHITH
0 Stars     3 Views    

Author: Roohith R 23BEC0179

Project access type: Public

Description:

(b) Write the dataflow model for the design specified by thefollowing

Verilog code.

module Circuit_A (A, B, C, D, F);input A, B,

C, D;

output F;

wire w, x, y, z, a, d;not (a, A);

not (d, D);

and (y, a , C);

or (x, B, C, d);

and (z, y, A);

and (w, z , B);

or (F, x, w);

endmodule

Created: Sep 10, 2024

Updated: Sep 10, 2024


Comments

You must login before you can post a comment.