Prev Problem
Next Problem

3. Multiple Drivers

Discussions2
Log in to post comments and replies.
POTHULACHINNAOBULESU

/*Write yo-modulur code here*/

module top_module(

    input a,

    input b,

    output y

);


 

assign y = a;

assign y = b;


 

endmodule


 

 

0
sachinpal
sachinpal
Sep 13 2026

When a abd b both have same vavaales then only y is giving valid output why ?

+5