Skip to main content

Jae

Trait Jae 

Source
pub trait Jae<T> {
    // Required method
    fn jae(&mut self, op1: T);
}
Expand description

Trait for jae instruction kinds.

Required Methods§

Source

fn jae(&mut self, op1: T)

Emit a conditional jump if above or equal (CF=0). This handles the flags from an unsigned arithmetic operation.

Implementors§

Source§

impl Jae<&mut Label> for Asm