summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2013-05-21 11:32:24 -0500
committerNilay Vaish <nilay@cs.wisc.edu>2013-05-21 11:32:24 -0500
commitbd3d1955da7502187f732a3095ef27f2f95d4ff1 (patch)
tree35f092d8e452d7d1c79b0059d928e17b0410ba9a /configs
parente7ce518168bea2e458ba654cf75d689d0d095ce7 (diff)
downloadgem5-bd3d1955da7502187f732a3095ef27f2f95d4ff1.tar.xz
ruby: moesi cmp token: cosmetic changes
Updates copyright years, removes space at the end of lines, shortens variable names.
Diffstat (limited to 'configs')
-rw-r--r--configs/ruby/MOESI_CMP_token.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/ruby/MOESI_CMP_token.py b/configs/ruby/MOESI_CMP_token.py
index d2ed42c51..f3ad05a92 100644
--- a/configs/ruby/MOESI_CMP_token.py
+++ b/configs/ruby/MOESI_CMP_token.py
@@ -100,8 +100,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,
N_tokens = n_tokens,
retry_threshold = \
@@ -147,7 +147,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,
N_tokens = n_tokens,
ruby_system = ruby_system)