Skip to content

Commit

Permalink
Fixed broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-jonsson committed Nov 13, 2023
1 parent 70e79f5 commit 1d31f4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vxt/exec.inl
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ static void pushf_9C(CONSTSP(cpu) p, INST(inst)) {

static void popf_9D(CONSTSP(cpu) p, INST(inst)) {
UNUSED(inst);
p->regs.flags |= 0xF002;
p->regs.flags = (pop(p) & ALL_FLAGS) | 0xF002;
}

static void sahf_9E(CONSTSP(cpu) p, INST(inst)) {
Expand Down

0 comments on commit 1d31f4b

Please sign in to comment.