diff options
Diffstat (limited to 'configs/example/se.py')
-rw-r--r-- | configs/example/se.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/configs/example/se.py b/configs/example/se.py index 572364482..1edd99e9b 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -52,9 +52,6 @@ from m5.defines import buildEnv from m5.objects import * from m5.util import addToPath, fatal -if buildEnv['FULL_SYSTEM']: - fatal("This script requires syscall emulation mode (*_SE).") - addToPath('../common') addToPath('../ruby') @@ -200,6 +197,6 @@ for i in xrange(np): if options.fastmem: system.cpu[0].physmem_port = system.physmem.port -root = Root(system = system) +root = Root(full_system = False, system = system) Simulation.run(options, root, system, FutureClass) |