I generated the following code :
module clk_gen();
reg clk, clk1 , clk2, clk3 , clk4 ;
always
fork
#5 clk = ~clk ;
#1 clk1 = ~clk1 ;
#3 clk2 = ~clk2 ;
#4 clk3 = ~clk3 ;
#3 clk4 = ~clk4 ;
join
initial begin
clk = 1'b0 ;
clk1 = 1'b0 ;
clk2 = 1'b0 ;
clk3 = 1'b0 ;
clk4 = 1'b0 ;
$monitor ("Time : %0t ,RealTime : %0t ,Clk Value : %0d,Clk1 Value : %0d,Clk2 Value : %0d,Clk3 Value : %0d,Clk4 Value : %0d,$time,$realtime,clk,clk1,clk2,clk3,clk4) ;
#30 $finish ;
end
endmodule : clk_gen
I am not able to generate the clocks using the fork-join statement.All clocks generated are of the same frequency i.e of #5 delay.
join
will wait till all thread finish, so actually for the longest one (#5). This is why all clocks are synchronized at 5 cycles.you do not need a fork there. just use multiple always statements.
you can potentially use fork/join like this:
which would be the same as using mulitpile initial blocks