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 A_del;
always_ff @(posedge B) begin
A_del - A;
C =(A && ~A_del);
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 9ns
Two pulses of width 5 ns separated by 5.2 ns
Three pulses of width 5.2 ns
Goes to 1'b1 and remains there
For the given RTL code: ` ` ` module myModule (

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Electrical Engineering Questions!