Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update core_ibex_pmp_fcov_if.sv #2234

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dv/uvm/core_ibex/fcov/core_ibex_pmp_fcov_if.sv
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ interface core_ibex_pmp_fcov_if import ibex_pkg::*; #(
// This coverpoint converts pmp_add_napot_valid into 32 bins. The onehot call makes sure
// that when the entry is not in NAPOT mode, then no bin is selected. The clog2 call
// converts the value 0...010...0 to the index of the one bit that is set.
cp_napot_addr_modes: coverpoint $clog2(pmp_addr_napot_valid[i_region])
cp_napot_addr_modes : coverpoint $clog2(pmp_addr_napot_valid[i_region])
iff ($onehot(pmp_addr_napot_valid[i_region])) {
bins napot_addr[] = { [0:31] };
}
Expand Down
Loading