diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-03-21 21:22:21 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-03-21 21:22:21 -0700 |
commit | 92cfd1cac7f6f2d0abf64808f08f063cd0db1263 (patch) | |
tree | a69a2964f7342083cd8aaca5ed32df207a1edea8 /configs/ruby/MI_example.py | |
parent | b5e4c3cbf2de32e18029b44b16b307a773b6ecf7 (diff) | |
download | gem5-92cfd1cac7f6f2d0abf64808f08f063cd0db1263.tar.xz |
ruby: Ruby support for sparse memory
The patch includes direct support for the MI example protocol.
Diffstat (limited to 'configs/ruby/MI_example.py')
-rw-r--r-- | configs/ruby/MI_example.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configs/ruby/MI_example.py b/configs/ruby/MI_example.py index 96515971e..f4033caeb 100644 --- a/configs/ruby/MI_example.py +++ b/configs/ruby/MI_example.py @@ -105,7 +105,9 @@ def create_system(options, phys_mem, piobus, dma_devices): dir_cntrl = Directory_Controller(version = i, directory = \ RubyDirectoryMemory(version = i, - size = dir_size), + size = dir_size, + use_map = options.use_map, + map_levels = options.map_levels), memBuffer = mem_cntrl) dir_cntrl_nodes.append(dir_cntrl) |