mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-23 13:47:13 -04:00
HOTFIX: Add parenthesis to "inside" constraint in corev-dv (#1610)
This commit is contained in:
parent
5a7bbafdab
commit
3c45510934
1 changed files with 3 additions and 3 deletions
6
verif/env/corev-dv/cva6_unsupported_instr.sv
vendored
6
verif/env/corev-dv/cva6_unsupported_instr.sv
vendored
|
@ -211,9 +211,9 @@ class cva6_unsupported_instr_c extends uvm_object;
|
|||
if (instr_bin[12:10] != 3'b111) {
|
||||
instr_bin[6:2] == 5'b0;
|
||||
}
|
||||
else {
|
||||
!instr_bin[6:5] inside {2'b10, 2'b11};
|
||||
}
|
||||
else {
|
||||
!(instr_bin[6:5] inside {2'b10, 2'b11});
|
||||
}
|
||||
}
|
||||
if (c_op == 2'b10) {
|
||||
!(c_msb inside {3'b100, 3'b010, 3'b110});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue