irun或者vcs dump波形文件的方法
irun 当我们在irun下面需要dump波形文件的时候, 一般会在tb文件中写下如下的代码: module tb_top; ... logic [1023:0] testcase_reg; initial begin string testcase; $value$plugargs("UVM_TESTNAME=%s", testcase); testcase_reg = $sformatf("waveform.%s.shm", testcase); $shm_open(testcase_reg); $shm_probe("AS"); end endmodule 注意, 这里之所以