aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/insn/jnz.rs
blob: 739d013b49d5e7246b6bddb411cc75065de6e41f (plain) (tree)
1
2
3
4
5
6
7
8

                        





                                                  
use super::Jnz;
use crate::{Asm, Label};

impl Jnz<&mut Label> for Asm {
    fn jnz(&mut self, op1: &mut Label) {
        self.encode_jmp_label(&[0x0f, 0x85], op1);
    }
}