Struct armv4t::MultiplyFlags [] [src]

pub struct MultiplyFlags {
    pub unsigned: bool,
    pub accumulate: bool,
    pub flags: bool,
}

Flags common to multiplication operations

Note: Not all flags apply to all multiplication operations.

Fields

Unsigned flag

Signal that the processor should treat the operands and result as unsigned integers.

Note: This flag is only applicable to the Multiply Long operation.

Accumulate flag

Signal that the processor should add the multiplication result into another register.

Condition code flag

Signal that the processor should set condition codes based on the multiplication result.

Trait Implementations

impl Clone for MultiplyFlags
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MultiplyFlags
[src]

impl Debug for MultiplyFlags
[src]

Formats the value using the given formatter.

impl Default for MultiplyFlags
[src]

Returns the "default value" for a type. Read more

impl PartialEq for MultiplyFlags
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.