diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-03-21 21:22:20 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-03-21 21:22:20 -0700 |
commit | 91b0c5487bcf0259eab25baef686fbef83adae1a (patch) | |
tree | f03b7fe4632405141db83afc5357766ab466ec3b /configs/ruby/MOESI_CMP_directory.py | |
parent | d8e1e5abd0a560dfeb061f430bb2470a818ae5b0 (diff) | |
download | gem5-91b0c5487bcf0259eab25baef686fbef83adae1a.tar.xz |
ruby: Python config files now sets a unique id for each sequencer
Diffstat (limited to 'configs/ruby/MOESI_CMP_directory.py')
-rw-r--r-- | configs/ruby/MOESI_CMP_directory.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/ruby/MOESI_CMP_directory.py b/configs/ruby/MOESI_CMP_directory.py index 6e248573d..1cdb6c522 100644 --- a/configs/ruby/MOESI_CMP_directory.py +++ b/configs/ruby/MOESI_CMP_directory.py @@ -76,7 +76,8 @@ def create_system(options, phys_mem, piobus, dma_devices): l1d_cache = L1Cache(size = options.l1d_size, assoc = options.l1d_assoc) - cpu_seq = RubySequencer(icache = l1i_cache, + cpu_seq = RubySequencer(version = i, + icache = l1i_cache, dcache = l1d_cache, physMemPort = phys_mem.port, physmem = phys_mem) |