diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-02-27 18:52:57 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-02-27 18:52:57 -0800 |
commit | b1cbd7841acad5fdcd88c2e644b454e95190eb7e (patch) | |
tree | be8f6df548c271b71c53a3077c0e0b1fe1ac3d2b /configs | |
parent | f0b4259e98773bee04cd0af5dda7bcfba5032589 (diff) | |
download | gem5-b1cbd7841acad5fdcd88c2e644b454e95190eb7e.tar.xz |
Config: Fix fs.py's call to CacheConfig.config_cache.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/example/fs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py index c0b434eb3..a5a5661f0 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -121,10 +121,10 @@ if options.kernel is not None: if options.script is not None: test_sys.readfile = options.script -CacheConfig.config_cache(options, system) - test_sys.cpu = [TestCPUClass(cpu_id=i) for i in xrange(np)] +CacheConfig.config_cache(options, test_sys) + if options.caches or options.l2cache: test_sys.bridge.filter_ranges_a=[AddrRange(0, Addr.max)] test_sys.bridge.filter_ranges_b=[AddrRange(0, size='8GB')] |