Skip to main content

UnzipEmitter

Trait UnzipEmitter 

Source
pub trait UnzipEmitter<T0, T1> {
    // Required method
    fn unzip(&mut self, rd: T0, rs1: T1);
}
Expand description

Bit deinterleave

This instruction gathers bits from the high and low halves of the source word into odd/even bit positions in the destination word. It is the inverse of the zip instruction. This instruction is available only on RV32.

§Forms

Assembly: unzip xd, xs1 Rust: unzip(rd, rs1)

§Arguments

  • rd — Destination register.
  • rs1 — Source register.

Required Methods§

Source

fn unzip(&mut self, rd: T0, rs1: T1)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§