diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-08-01 18:19:23 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-08-01 18:19:23 -0700 |
commit | e719a3e4c058920fb5913a38fbe4976d53a0e6e2 (patch) | |
tree | 250c8a334c7393db03ae1ef83fa016b87ba9e0f6 /configs/example/se.py | |
parent | a3e70f495749334670e9fa392c4212794707d0d8 (diff) | |
download | gem5-e719a3e4c058920fb5913a38fbe4976d53a0e6e2.tar.xz |
Fix how the "cmd" parameter is set in se.py and remove hack in x86 process initialization code.
--HG--
extra : convert_revision : 1fc741eea956ebfa4cef488eef4333d1f50617a6
Diffstat (limited to 'configs/example/se.py')
-rw-r--r-- | configs/example/se.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/example/se.py b/configs/example/se.py index b294480f6..20fe75a21 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -64,7 +64,7 @@ if args: process = LiveProcess() process.executable = options.cmd -process.cmd = options.cmd + " " + options.options +process.cmd = [options.cmd] + options.options.split() if options.input != "": process.input = options.input |