Skip to main content

juicebox_asm/insn/
jl.rs

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