Posted by feiphung on Feb 6, 2019
Coverage #coverage #SystemVerilog #FunctionalCoverage Why cover(in_valid) failed? module multiply (clk, reset, in_valid, out_valid, in_A, in_B, out_C); // C=A*B parameter A_WIDTH = 16; parameter B_WIDTH = 16; input clk, reset; input in_valid; // to si ...
Question