Skip to main content

juicebox_asm/insn/
jb.rs

1// SPDX-License-Identifier: MIT
2//
3// Copyright (c) 2026, Johannes Stoelp <dev@memzero.de>
4
5use super::Jb;
6use crate::{Asm, Label};
7
8impl Jb<&mut Label> for Asm {
9    fn jb(&mut self, op1: &mut Label) {
10        self.encode_jmp_label(&[0x0f, 0x82], op1);
11    }
12}