shaiko
Advanced Member level 5
Hello,
1. Is the following legal in Verilog?
2. Will it have the same effect as the following VHDL code?
3. Is it possible in Verilog to explicitly set the time delay units in code? (such as with the 5ns example in VHDL).
1. Is the following legal in Verilog?
Code:
assign #5 a = ~a;
Code:
a <= not a after 5ns ;