When we use
input reg [7:0] ast, f_out;
ast === f_out ;
ast <= ast + 8'b00000001;
for those operations " === and <= ", Have any time delay been occurred ?
EDIT: I think something small like 1 unit time, am I wrong ?
used language : verilog
When we use
input reg [7:0] ast, f_out;
ast === f_out ;
ast <= ast + 8'b00000001;
for those operations " === and <= ", Have any time delay been occurred ?
EDIT: I think something small like 1 unit time, am I wrong ?
used language : verilog
Time delays are most commonly specified using #. Since I see no # in your code, there is probably no delay.
Another way to add delays is to use a specify block, and you don't show that either. There are plenty of examples of specify in the Verilog IEEE Std.
You can check for delays yourself by running a simulation and printing time values:
$display($time);