Question: For the given RTL code: ` ` ` module myModule ( input logic A , input logic B , output logic C ) ; logic
For the given RTL code:
module myModule
input logic A input logic B output logic C
;
logic Adel;
alwaysff @posedge B begin
Adel A;
C A && ~Adel;
end
endmodule
If the applied waveforms at A and B are as shown, the Output C can be:
Pick ONE option
A single pulse of width ns
Two pulses of width ns separated by ns
Three pulses of width ns
Goes to b and remains there
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
