Should I use value <= 0 or value <='0 in the following code block?
I have the following code block, but I am not sure if I should use value <= 0 or value <='0. What is the difference between the two?
logic [31:0] value, tap;
always_ff @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
value <= '0; // or value <= 0; ?
end else begin
vlaue <= value + tap;
end
end