RegAccessType

Type Alias RegAccessType 

Source
pub type RegAccessType = AccessType;
Expand description

Previously the enum was called RegAccessType, see issue #135 Maintain compatibility with legacy code

Aliased Type§

pub enum RegAccessType {
    ReadOnly,
    WriteOnly,
    ReadWrite,
}

Variants§

§

ReadOnly

Operand read from memory or register.

§

WriteOnly

Operand write from memory or register.

§

ReadWrite

Operand read and write from memory or register.