Verilog Notes (1)
Verilog Notes (1)
77. Non deterministic race condition - consider "a" is a 4 bit reg variable, assigned in two
different procedural blocks...
always @(posedge clk)
a_in = 4'b0000;
always @(posedge clk)
a_in = 4' b1001;
78. "#" "defparam" are used to overwrite dut parameters in testbench instantiations.