Skip to main content

CZextHEmitter

Trait CZextHEmitter 

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

Zero-extend halfword, 16-bit encoding

This instruction takes a single source/destination operand. This instruction zero-extends the least-significant halfword of the source to XLEN by inserting 0’s into all of the bits more significant than 15.

§Forms

Assembly: c.zext.h xd Rust: c_zext_h(rd)

§Arguments

  • rd — Destination/source register.

Required Methods§

Source

fn c_zext_h(&mut self, rd: T0)

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§