[][src]Struct yaxpeax_superh::SuperHDecoder

pub struct SuperHDecoder<'f> {
    pub little_endian: bool,
    pub fpscr_sz: bool,
    pub level: SuperHLevel,
    pub features: &'f [SuperHFeature],
}

Fields

little_endian: boolfpscr_sz: bool

When FPSCR.SZ = 1, the SH-4 CPU core can perform data transfer by means of pair single-precision data transfer instructions.

http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/CD00147165.pdf Section 6.5.2 "Pair single-precision data transfer" p. 154

level: SuperHLevelfeatures: &'f [SuperHFeature]

Implementations

impl SuperHDecoder<'_>[src]

pub const SH1: SuperHDecoder<'static>[src]

SuperH CPU in little-endian mode

pub const SH2: SuperHDecoder<'static>[src]

SH-2 CPU in little-endian mode

pub const J2: SuperHDecoder<'static>[src]

J-core J2 CPU in little-endian mode

pub const SH3: SuperHDecoder<'static>[src]

SH-3 CPU with MMU in little-endian mode

pub const SH4: SuperHDecoder<'static>[src]

SH-4 CPU with MMU and FPU (double-precision instructions off) in little-endian mode

Trait Implementations

impl<'f> Clone for SuperHDecoder<'f>[src]

impl<'f> Copy for SuperHDecoder<'f>[src]

impl<'f> Debug for SuperHDecoder<'f>[src]

impl Decoder<SuperHInstruction> for SuperHDecoder<'_>[src]

type Error = SuperHInstructionDecodeError

impl<'f> Default for SuperHDecoder<'f>[src]

impl<'f> Eq for SuperHDecoder<'f>[src]

impl<'f> Hash for SuperHDecoder<'f>[src]

impl<'f> Ord for SuperHDecoder<'f>[src]

impl<'f> PartialEq<SuperHDecoder<'f>> for SuperHDecoder<'f>[src]

impl<'f> PartialOrd<SuperHDecoder<'f>> for SuperHDecoder<'f>[src]

impl<'f> StructuralEq for SuperHDecoder<'f>[src]

impl<'f> StructuralPartialEq for SuperHDecoder<'f>[src]

Auto Trait Implementations

impl<'f> Send for SuperHDecoder<'f>[src]

impl<'f> Sync for SuperHDecoder<'f>[src]

impl<'f> Unpin for SuperHDecoder<'f>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.