diff --git a/test/test_mem_core_sim.py b/test/test_mem_core_sim.py index 6bf18b8..0f7d213 100644 --- a/test/test_mem_core_sim.py +++ b/test/test_mem_core_sim.py @@ -270,7 +270,7 @@ cases = [ @pytest.mark.parametrize("mode, width, depth, base_addr", cases) def test_mem_core(mode, width, depth, base_addr): mem_core = MemoryCore(mode, width, depth) - mem_core.base_addr = 0 + mem_core.base_addr = base_addr tests = MemoryCoreTests(mem_core)