1
2
3
4
5
6
7
8
use super::Jz;
use crate::{Asm, Label};

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