pub enum Instruction {
Show 14 variants Ldr { imm: u16, rn: u8, rt: u8, }, Add { shift: u8, imm: u16, rn: u8, rd: u8, }, Adrp { imm: u32, rd: u8, }, Ldur { imm: u16, rn: u8, rt: u8, }, Ldrb { imm: u16, rn: u8, rt: u8, }, Sub { shift: u8, imm: u16, rn: u8, rd: u8, }, And { imm: u16, rn: u8, rd: u8, }, Mov { imm: u8, rm: u8, rn: u8, rd: u8, }, Bl { imm: u32, }, Ldrsw { imm: u16, rn: u8, rt: u8, }, Cbz { imm: u32, rt: u8, }, Cmp { shift: u8, imm: u16, rn: u8, }, BCs { imm: u32, cond: u8, }, Unk(u32),
}

Variants

Ldr

Fields

imm: u16
rn: u8
rt: u8

Add

Fields

shift: u8
imm: u16
rn: u8
rd: u8

Adrp

Fields

imm: u32
rd: u8

Ldur

Fields

imm: u16
rn: u8
rt: u8

Ldrb

Fields

imm: u16
rn: u8
rt: u8

Sub

Fields

shift: u8
imm: u16
rn: u8
rd: u8

And

Fields

imm: u16
rn: u8
rd: u8

Mov

Fields

imm: u8
rm: u8
rn: u8
rd: u8

Bl

Fields

imm: u32

Ldrsw

Fields

imm: u16
rn: u8
rt: u8

Cbz

Fields

imm: u32
rt: u8

Cmp

Fields

shift: u8
imm: u16
rn: u8

BCs

Fields

imm: u32
cond: u8

Unk(u32)

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.