diff options
-rw-r--r-- | configs/common/CpuConfig.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configs/common/CpuConfig.py b/configs/common/CpuConfig.py index 5d70f46df..653220528 100644 --- a/configs/common/CpuConfig.py +++ b/configs/common/CpuConfig.py @@ -96,10 +96,10 @@ def config_scheme(cpu_cls, cpu_list, options): fatal("Need to provide needsTSO and scheme " "to run simulation with DerivO3CPU") - print "**********" - print "info: Configure for DerivO3CPU. needsTSO=%d; scheme=%s"\ - % (options.needsTSO, options.scheme) - print "**********" + print("**********") + print("info: Configure for DerivO3CPU. needsTSO=%d; scheme=%s"\ + % (options.needsTSO, options.scheme)) + print("**********") for cpu in cpu_list: if options.needsTSO: cpu.needsTSO = True @@ -113,7 +113,7 @@ def config_scheme(cpu_cls, cpu_list, options): if len(options.scheme)!=0: cpu.simulateScheme = options.scheme else: - print "not DerivO3CPU" + print("not DerivO3CPU") |