Increase interpreter iteration limit (creates too many entry points)

This commit is contained in:
Fabian 2020-12-31 19:14:33 -06:00
parent 700b5995c5
commit 7f2f404fcf

View file

@ -61,7 +61,7 @@ pub union reg128 {
/// Setting this to true will make execution extremely slow
pub const CHECK_MISSED_ENTRY_POINTS: bool = false;
pub const INTERPRETER_ITERATION_LIMIT: u32 = 1000;
pub const INTERPRETER_ITERATION_LIMIT: u32 = 100_001;
pub const FLAG_SUB: i32 = -0x8000_0000;
pub const FLAG_CARRY: i32 = 1;