Fix OBI address truncation template for 1-byte datawidth case. #176

This commit is contained in:
Alex Mykyta
2025-11-18 22:45:30 -08:00
parent 61bffb7b91
commit 4201ce975e
2 changed files with 6 additions and 0 deletions

View File

@@ -1,9 +1,11 @@
from parameterized import parameterized_class
from ..lib.cpuifs import ALL_CPUIF
from ..lib.sim_testcase import SimTestCase
from ..lib.test_params import get_permutation_class_name, get_permutations
PARAMS = get_permutations({
"cpuif": ALL_CPUIF,
"regwidth" : [8, 16, 32, 64],
})
@parameterized_class(PARAMS, class_name_func=get_permutation_class_name)