We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0a4c9f commit b8b8b33Copy full SHA for b8b8b33
model/riscv_types_zvk.sail
@@ -6,4 +6,4 @@
6
/* SPDX-License-Identifier: BSD-2-Clause */
7
/*=======================================================================================*/
8
9
-function zvk_check_encdec(EGW: {128, 256}, EGS: {4, 8}) -> bool = (unsigned(vl) % EGS == 0) & (unsigned(vstart) % EGS == 0) & (2 ^ get_lmul_pow() * VLEN) >= EGW
+function zvk_check_encdec(EGW: int, EGS: int) -> bool = (unsigned(vl) % EGS == 0) & (unsigned(vstart) % EGS == 0) & (2 ^ get_lmul_pow() * VLEN) >= EGW
0 commit comments