Skip to content

Commit

Permalink
complete sopk with upcasted simm16
Browse files Browse the repository at this point in the history
  • Loading branch information
Qazalin committed Sep 8, 2024
1 parent f0623eb commit 93927bf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,10 @@ impl<'a> Thread<'a> {
*self.scc = match op {
9 => s0 == s1,
10 => s0 != s1,
11 => s0 > s1,
12 => s0 >= s1,
13 => s0 < s1,
14 => s0 <= s1,
_ => todo_instr!(instruction)?,
} as u32
}
Expand Down

0 comments on commit 93927bf

Please sign in to comment.