config: allow ruby to be used with Minor CPU
This commit is contained in:
parent
740984b30b
commit
bc5be9ac43
1 changed files with 2 additions and 2 deletions
|
@ -241,8 +241,8 @@ for i in xrange(np):
|
||||||
system.cpu[i].createThreads()
|
system.cpu[i].createThreads()
|
||||||
|
|
||||||
if options.ruby:
|
if options.ruby:
|
||||||
if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
|
if options.cpu_type == "atomic" or options.cpu_type == "AtomicSimpleCPU":
|
||||||
print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"
|
print >> sys.stderr, "Ruby does not work with atomic cpu!!"
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
Ruby.create_system(options, False, system)
|
Ruby.create_system(options, False, system)
|
||||||
|
|
Loading…
Reference in a new issue