G
googler
Guest
Please refer to the initial block below.
initial begin
a <= 2'b00;
b <= 2'b00;
c <= 2'b00; // time = 0
#5 a <= 2'b01; // time = 5
#3 b <= 2'b10; // time = 8
#4 c <= 2'b11; // time = 12
end
Is there a way I can use the absolute time unit (as shown as part of
comment on right) in my code instead of having to use the time
difference relative to last statement?
initial begin
a <= 2'b00;
b <= 2'b00;
c <= 2'b00; // time = 0
#5 a <= 2'b01; // time = 5
#3 b <= 2'b10; // time = 8
#4 c <= 2'b11; // time = 12
end
Is there a way I can use the absolute time unit (as shown as part of
comment on right) in my code instead of having to use the time
difference relative to last statement?