Skip to content

Commit 3068cfb

Browse files
committed
core_complex: set NONE finish condition
1 parent aaa922e commit 3068cfb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/sysc/core_complex.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ class core_complex : public sc_core::sc_module, public scc::traceable, public co
252252
core->setup_mt();
253253
quantum_keeper.check_and_sync(sc_core::SC_ZERO_TIME);
254254
quantum_keeper.run_thread([this]() {
255-
vm->start(std::numeric_limits<uint64_t>::max(), dump_ir);
255+
vm->start(std::numeric_limits<uint64_t>::max(), dump_ir, iss::finish_cond_e::NONE);
256256
return quantum_keeper.get_local_absolute_time();
257257
});
258258
}
@@ -278,7 +278,7 @@ class core_complex : public sc_core::sc_module, public scc::traceable, public co
278278
f();
279279
}
280280
template <typename U = QK> typename std::enable_if<std::is_same<U, tlm::scc::quantumkeeper>::value>::type run_iss() {
281-
vm->start(std::numeric_limits<uint64_t>::max(), dump_ir);
281+
vm->start(std::numeric_limits<uint64_t>::max(), dump_ir, iss::finish_cond_e::NONE);
282282
}
283283
///////////////////////////////////////////////////////////////////////////////
284284
//

0 commit comments

Comments
 (0)