diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:27 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-01-29 20:29:27 -0800 |
commit | faa76fc248ec7647f766ea14335d86036a5d2b9b (patch) | |
tree | 1ee36802e43a03dd3561caa733b89acec9bae6f1 /configs/ruby/Ruby.py | |
parent | 3e286d825dbadc577052c0898db1f3958e17e1cb (diff) | |
download | gem5-faa76fc248ec7647f766ea14335d86036a5d2b9b.tar.xz |
ruby: MESI_CMP_directory updated to the new config system
Diffstat (limited to 'configs/ruby/Ruby.py')
-rw-r--r-- | configs/ruby/Ruby.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configs/ruby/Ruby.py b/configs/ruby/Ruby.py index e86bfea1a..e7f72b8eb 100644 --- a/configs/ruby/Ruby.py +++ b/configs/ruby/Ruby.py @@ -33,6 +33,7 @@ from m5.defines import buildEnv from m5.util import addToPath import MOESI_hammer +import MESI_CMP_directory import MOESI_CMP_directory import MI_example import MOESI_CMP_token @@ -47,6 +48,12 @@ def create_system(options, physmem, piobus = None, dma_devices = []): physmem, \ piobus, \ dma_devices) + elif protocol == "MESI_CMP_directory": + (cpu_sequencers, dir_cntrls, all_cntrls) = \ + MESI_CMP_directory.create_system(options, \ + physmem, \ + piobus, \ + dma_devices) elif protocol == "MOESI_CMP_directory": (cpu_sequencers, dir_cntrls, all_cntrls) = \ MOESI_CMP_directory.create_system(options, \ |