yann_sun
Member level 1
Hi, all
Why the commands in "always begin end" executed at the time zero?
The following is the brief codes.
Why the commands in "always begin end" executed at the time zero?
The following is the brief codes.
Code:
...
initial begin
A <= 0;
# 10 A <= 1;
...
end
...
..
.
always @(negedge A) begin
some commands
some more
...
end