Merge branch 'GP-0_ryanmkurtz_PR-5262_mehmooda_emulate' (Closes #5262,

Closes #6290, Closes #6292, Closes #5917)
This commit is contained in:
Ryan Kurtz 2024-04-01 14:29:12 -04:00
commit 42c17a20f8

View file

@ -413,6 +413,8 @@ void EmulatePcodeCache::executeBranch(void)
fallthruOp(); fallthruOp();
else if ((current_op < 0)||(current_op >= opcache.size())) else if ((current_op < 0)||(current_op >= opcache.size()))
throw LowlevelError("Bad intra-instruction branch"); throw LowlevelError("Bad intra-instruction branch");
else
establishOp();
} }
else else
setExecuteAddress(destaddr); setExecuteAddress(destaddr);