mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-22 23:42:57 +00:00
User Config: Add option to specify wall clock CNTPCT.
This commit is contained in:
committed by
MerryMage
parent
97b9d3e058
commit
41521ed856
@@ -233,7 +233,8 @@ private:
|
||||
|
||||
// JIT Compile
|
||||
const auto get_code = [this](u64 vaddr) { return conf.callbacks->MemoryReadCode(vaddr); };
|
||||
IR::Block ir_block = A64::Translate(A64::LocationDescriptor{current_location}, get_code, {conf.define_unpredictable_behaviour});
|
||||
IR::Block ir_block = A64::Translate(A64::LocationDescriptor{current_location}, get_code,
|
||||
{conf.define_unpredictable_behaviour, conf.wall_clock_cntpct});
|
||||
Optimization::A64CallbackConfigPass(ir_block, conf);
|
||||
if (conf.enable_optimizations) {
|
||||
Optimization::A64GetSetElimination(ir_block);
|
||||
|
||||
Reference in New Issue
Block a user