File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -801,6 +801,7 @@ class uvme_rv32x_hwloop_covg # (
801
801
function void check_exception_exit ();
802
802
if (cv32e40p_rvvi_vif.valid && cv32e40p_rvvi_vif.insn == TB_INSTR_MRET && ! cv32e40p_rvvi_vif.trap) begin
803
803
is_ebreak = 0 ; is_ecall = 0 ; is_illegal = 0 ; is_trap = 0 ;
804
+ prev_is_trap = 0 ;
804
805
`uvm_info (_header, $sformatf (" DEBUG - EXCEPTION Exit" ), UVM_DEBUG );
805
806
end
806
807
endfunction : check_exception_exit
@@ -895,6 +896,7 @@ class uvme_rv32x_hwloop_covg # (
895
896
if (is_irq && cv32e40p_rvvi_vif.valid && cv32e40p_rvvi_vif.insn == TB_INSTR_MRET ) begin
896
897
`uvm_info (_header, $sformatf (" DEBUG - IRQ Exit" ), UVM_DEBUG );
897
898
is_irq = 0 ;
899
+ prev_is_trap = 0 ;
898
900
end
899
901
end // IRQ_EXIT
900
902
forever begin : INIT_MACHINE_MODE
@@ -947,6 +949,7 @@ class uvme_rv32x_hwloop_covg # (
947
949
@ (posedge cv32e40p_rvvi_vif.clk) ; @ (negedge cv32e40p_rvvi_vif.clk);
948
950
`uvm_info (_header, $sformatf (" DEBUG - Debug Mode Exit" ), UVM_DEBUG );
949
951
is_dbg_mode = 0 ; is_ebreakm = 0 ;
952
+ prev_is_trap = 0 ;
950
953
end
951
954
end // DBG_EXIT
952
955
You can’t perform that action at this time.
0 commit comments