1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-07-29 23:24:43 +00:00

Ensure shoutouts upon LDS, LES and any far jump/call/int.

This commit is contained in:
Thomas Harte
2023-11-10 22:58:59 -05:00
parent 19a61f867f
commit 3a782faaf3
2 changed files with 9 additions and 2 deletions

View File

@@ -348,6 +348,7 @@ class FlowController {
void jump(uint16_t segment, uint16_t address) {
registers_.cs_ = segment;
registers_.did_update(Registers::Source::CS);
registers_.ip_ = address;
}