I am trying to learn Verilog, and in a simple clock generator example, I see the following code:
always #(cycle/2) clk ~= clk
I've seen always @(*) before but not pound (#). I tried to find it in the documentation, but all I could find was some reference to "real-valued ports" with no further elaboration.
Thanks for all your help!