summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorRon Dreslinski <rdreslin@umich.edu>2006-02-27 16:33:11 -0500
committerRon Dreslinski <rdreslin@umich.edu>2006-02-27 16:33:11 -0500
commit31fc398f0641a9dcc9757520e9dc7fd2cce102fb (patch)
treee398cf4520c7fe1e0f0088b40f5520aa6f80c68b /python
parentb6247c9ea7ddc459a076dddf5e5f330da0211c1e (diff)
downloadgem5-31fc398f0641a9dcc9757520e9dc7fd2cce102fb.tar.xz
Fixes so that it compiles properly. Still working on .py file issues.
SConscript: Add Back memory to be built mem/physical.hh: Fix function declerations python/m5/objects/BaseCPU.py: Remove IL1 and DL1 params from the cpu object --HG-- extra : convert_revision : 2f285dc626bc8d84d095def68e986fe7e6f3d8e9
Diffstat (limited to 'python')
-rw-r--r--python/m5/objects/BaseCPU.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/m5/objects/BaseCPU.py b/python/m5/objects/BaseCPU.py
index fac452285..e5e43022f 100644
--- a/python/m5/objects/BaseCPU.py
+++ b/python/m5/objects/BaseCPU.py
@@ -2,8 +2,6 @@ from m5 import *
class BaseCPU(SimObject):
type = 'BaseCPU'
abstract = True
- icache = Param.BaseMem(NULL, "L1 instruction cache object")
- dcache = Param.BaseMem(NULL, "L1 data cache object")
if build_env['FULL_SYSTEM']:
dtb = Param.AlphaDTB("Data TLB")