diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-05-21 11:32:38 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-05-21 11:32:38 -0500 |
commit | 09d5bc7e6fb27666a62665b54f08a3947b30ace1 (patch) | |
tree | 3971c66fd38f033cb7cf38cf81e1a77ac8444165 /configs/ruby | |
parent | bd3d1955da7502187f732a3095ef27f2f95d4ff1 (diff) | |
download | gem5-09d5bc7e6fb27666a62665b54f08a3947b30ace1.tar.xz |
ruby: mesi cmp directory: cosmetic changes
Updates copyright years, removes space at the end of lines, shortens
variable names.
Diffstat (limited to 'configs/ruby')
-rw-r--r-- | configs/ruby/MESI_CMP_directory.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/ruby/MESI_CMP_directory.py b/configs/ruby/MESI_CMP_directory.py index b11637114..c265bd4cb 100644 --- a/configs/ruby/MESI_CMP_directory.py +++ b/configs/ruby/MESI_CMP_directory.py @@ -91,8 +91,8 @@ def create_system(options, system, piobus, dma_ports, ruby_system): l1_cntrl = L1Cache_Controller(version = i, cntrl_id = cntrl_count, - L1IcacheMemory = l1i_cache, - L1DcacheMemory = l1d_cache, + L1Icache = l1i_cache, + L1Dcache = l1d_cache, l2_select_num_bits = l2_bits, send_evictions = ( options.cpu_type == "detailed"), @@ -132,7 +132,7 @@ def create_system(options, system, piobus, dma_ports, ruby_system): l2_cntrl = L2Cache_Controller(version = i, cntrl_id = cntrl_count, - L2cacheMemory = l2_cache, + L2cache = l2_cache, ruby_system = ruby_system) exec("ruby_system.l2_cntrl%d = l2_cntrl" % i) |