diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2006-08-16 23:46:54 -0400 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2006-08-16 23:46:54 -0400 |
commit | 6eebfda2d9a4613d8357a2f266289311240a0a1b (patch) | |
tree | 4bb45817a216962eed9506cd4fdb088b620a2902 /tests/configs/simple-timing.py | |
parent | 3329f6f63910963bafd52244df16348667d2e6eb (diff) | |
download | gem5-6eebfda2d9a4613d8357a2f266289311240a0a1b.tar.xz |
Fix the caches not working in the regression
src/python/m5/objects/BaseCPU.py:
Make mem parameter a MemObject, not just a PhysicalMemory
Fix a reference not using self
tests/configs/simple-atomic.py:
Set the mem paramter
tests/configs/simple-timing.py:
Set the mem parameter
--HG--
extra : convert_revision : 6bd9df36831a1c5bafc9e88ab945c2ebe91db785
Diffstat (limited to 'tests/configs/simple-timing.py')
-rw-r--r-- | tests/configs/simple-timing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/configs/simple-timing.py b/tests/configs/simple-timing.py index 823a8aec1..78dfabe3b 100644 --- a/tests/configs/simple-timing.py +++ b/tests/configs/simple-timing.py @@ -39,7 +39,7 @@ class MyCache(BaseCache): cpu = TimingSimpleCPU() cpu.addTwoLevelCacheHierarchy(MyCache(size = '128kB'), MyCache(size = '256kB'), MyCache(size = '2MB')) - +cpu.mem = cpu.dcache system = System(cpu = cpu, physmem = PhysicalMemory(), membus = Bus()) |