From 6e61842a737d2d6cf089b4b9fd24eca958227710 Mon Sep 17 00:00:00 2001 From: Erin Date: Sun, 22 Oct 2023 23:59:27 +0200 Subject: [PATCH] fixed match --- hbvm/src/vmrun.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hbvm/src/vmrun.rs b/hbvm/src/vmrun.rs index 6abc678..debe423 100644 --- a/hbvm/src/vmrun.rs +++ b/hbvm/src/vmrun.rs @@ -275,8 +275,8 @@ where self.pc = self.pcrel(ja, 3); } } - JLT => self.cond_jmp::(Ordering::Less), - JGT => self.cond_jmp::(Ordering::Greater), + JLTS => self.cond_jmp::(Ordering::Less), + JGTS => self.cond_jmp::(Ordering::Greater), JLTU => self.cond_jmp::(Ordering::Less), JGTU => self.cond_jmp::(Ordering::Greater), ECA => {