Skip to main content

CNotEmitter

Trait CNotEmitter 

Source
pub trait CNotEmitter<T0> {
    // Required method
    fn c_not(&mut self, rd: T0);
}
Expand description

Bitwise not, 16-bit encoding

This instruction takes a single source/destination operand. This instruction takes the one’s complement of rd’/rs1’ and writes the result to the same register.

§Forms

Assembly: c.not xd Rust: c_not(rd)

§Arguments

  • rd — Destination/source register.

Required Methods§

Source

fn c_not(&mut self, rd: T0)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§