diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2012-01-28 07:24:34 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2012-01-28 07:24:34 -0800 |
commit | ec20ee2f7cdaff22e63a5ae492f925d0d4839849 (patch) | |
tree | a4f7ee8e32356f97fa35df32e645711160296642 /configs/example/ruby_fs.py | |
parent | eab5c602865bcd399f069f332edd42c4ea4edffe (diff) | |
download | gem5-ec20ee2f7cdaff22e63a5ae492f925d0d4839849.tar.xz |
SE/FS: Make SE vs. FS mode a runtime parameter.
Diffstat (limited to 'configs/example/ruby_fs.py')
-rw-r--r-- | configs/example/ruby_fs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/example/ruby_fs.py b/configs/example/ruby_fs.py index e6ac5f8c8..e18ed95af 100644 --- a/configs/example/ruby_fs.py +++ b/configs/example/ruby_fs.py @@ -141,6 +141,6 @@ for (i, cpu) in enumerate(system.cpu): cpu.interrupts.pio = system.piobus.port cpu.interrupts.int_port = system.piobus.port -root = Root(system = system) +root = Root(full_system = True, system = system) Simulation.run(options, root, system, FutureClass) |