diff options
-rw-r--r-- | configs/example/etrace_replay.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configs/example/etrace_replay.py b/configs/example/etrace_replay.py index 385a2d15f..f8586d62f 100644 --- a/configs/example/etrace_replay.py +++ b/configs/example/etrace_replay.py @@ -104,6 +104,11 @@ system.cpu_clk_domain = SrcClockDomain(clock = options.cpu_clock, for cpu in system.cpu: cpu.clk_domain = system.cpu_clk_domain +# BaseCPU no longer has default values for the BaseCPU.isa +# createThreads() is needed to fill in the cpu.isa +for cpu in system.cpu: + cpu.createThreads() + # Assign input trace files to the Trace CPU system.cpu.instTraceFile=options.inst_trace_file system.cpu.dataTraceFile=options.data_trace_file |