Skip to content

Commit

Permalink
Fixed some failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-jonsson committed Nov 26, 2024
1 parent 1fc8459 commit 14b5d3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/vxt/system.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ VXT_API struct vxt_step vxt_system_step(CONSTP(vxt_system) s, int cycles) {

step.cycles += n;
step.halted = s->cpu.halt;
step.interrupt = step.interrupt;
step.int28 = step.int28;
step.invalid = step.invalid;
step.interrupt = s->cpu.interrupt;
step.int28 = s->cpu.int28;
step.invalid = s->cpu.invalid;

if (UNLIKELY((step.err = update_timers(s, n)) != VXT_NO_ERROR))
return step;
Expand Down

0 comments on commit 14b5d3b

Please sign in to comment.