Update this with the same option as single_fs.py
--HG-- extra : convert_revision : 778d654f515b6af7c45165b0a9bc5ef0d60f0d19
This commit is contained in:
parent
4e07f6ca52
commit
aa1efe3e72
1 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ parser = optparse.OptionParser(option_list=m5.standardOptions)
|
||||||
|
|
||||||
parser.add_option("-c", "--cmd", default="hello")
|
parser.add_option("-c", "--cmd", default="hello")
|
||||||
parser.add_option("-t", "--timing", action="store_true")
|
parser.add_option("-t", "--timing", action="store_true")
|
||||||
parser.add_option("-f", "--full", action="store_true")
|
parser.add_option("-d", "--detailed", action="store_true")
|
||||||
parser.add_option("-m", "--maxtick", type="int")
|
parser.add_option("-m", "--maxtick", type="int")
|
||||||
|
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
|
@ -34,7 +34,7 @@ mem = PhysicalMemory()
|
||||||
|
|
||||||
if options.timing:
|
if options.timing:
|
||||||
cpu = TimingSimpleCPU()
|
cpu = TimingSimpleCPU()
|
||||||
elif options.full:
|
elif options.detailed:
|
||||||
cpu = DetailedO3CPU()
|
cpu = DetailedO3CPU()
|
||||||
else:
|
else:
|
||||||
cpu = AtomicSimpleCPU()
|
cpu = AtomicSimpleCPU()
|
||||||
|
|
Loading…
Reference in a new issue