diff options
Diffstat (limited to 'tests/configs/memtest.py')
-rw-r--r-- | tests/configs/memtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/configs/memtest.py b/tests/configs/memtest.py index 6fface748..9876c07b9 100644 --- a/tests/configs/memtest.py +++ b/tests/configs/memtest.py @@ -56,8 +56,8 @@ nb_cores = 8 cpus = [ MemTest() for i in xrange(nb_cores) ] # system simulated -system = System(cpu = cpus, funcmem = PhysicalMemory(), - physmem = PhysicalMemory(), +system = System(cpu = cpus, funcmem = SimpleMemory(in_addr_map = False), + physmem = SimpleMemory(), membus = Bus(clock="500GHz", width=16)) # l2cache & bus |