Rename coverage module

This commit is contained in:
Jordan Carlin 2025-02-09 23:23:33 -08:00
parent 576e49ce67
commit 36fb7992da
No known key found for this signature in database
2 changed files with 2 additions and 3 deletions

View file

@ -742,8 +742,7 @@ module wallyTracer import cvw::*; #(parameter cvw_t P) (rvviTrace rvvi);
end end
always_ff @(posedge clk) begin always_ff @(posedge clk) begin
$display("wallyTracer: %b", rvvi.insn[0][0]); if(valid) begin
if(valid) begin
if(`STD_LOG) begin if(`STD_LOG) begin
$fwrite(file, "%016x, %08x, %s\t\t", rvvi.pc_rdata[0][0], rvvi.insn[0][0], instrWName); $fwrite(file, "%016x, %08x, %s\t\t", rvvi.pc_rdata[0][0], rvvi.insn[0][0], instrWName);
for(index2 = 0; index2 < NUM_REGS; index2 += 1) begin for(index2 = 0; index2 < NUM_REGS; index2 += 1) begin

View file

@ -741,7 +741,7 @@ end
// Functional coverage // Functional coverage
`ifdef FCOV `ifdef FCOV
trace2riscvISACOV trace2riscvISACOV(rvvi); cvw_arch_verif cvw_arch_verif(rvvi);
`endif `endif
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////