[]Struct lochnes::nes::cpu::CpuFlags

pub struct CpuFlags { /* fields omitted */ }

Methods

impl CpuFlags

pub const C: CpuFlags

Carry flag: set when an arithmetic operation resulted in a carry.

pub const Z: CpuFlags

Zero flag: set when an operation results in 0.

pub const I: CpuFlags

Interrupt disable flag: set to disable CPU interrupts.

pub const D: CpuFlags

Decimal mode flag: exists for compatibility with the 6502 (which used it for decimal arithmetic), but ignored by the Rioch 2A03/2A07 processors used in the NES/Famicom.

pub const B: CpuFlags

Break flag: set when BRK or PHP are called, cleared when the /IRQ or /NMI interrupts are called. When PLP or RTI are called, this flag is unaffected.

In other words, this flag isn't exactly "set" or "cleared"-- when an interrupt happens, the status register is pushed to the stack. If the interrupt was an /IRQ or /NMI interrupt, the value pushed to the stack will have this bit cleared; if the interrupt was caused by BRK (or if the PHP instruction is used), then the value pushed to the stack will have this bit set.

pub const U: CpuFlags

Unused: this flag is always set to 1

pub const V: CpuFlags

Overflow flag: set when an operation resulted in a signed overflow.

pub const N: CpuFlags

Negative flag: set when an operation resulted in a negative value, i.e. when the most significant bit (bit 7) is set.

pub fn empty() -> CpuFlags

Returns an empty set of flags.

pub fn all() -> CpuFlags

Returns the set containing all flags.

pub fn bits(&self) -> u8

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u8) -> Option<CpuFlags>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub fn from_bits_truncate(bits: u8) -> CpuFlags

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub fn intersects(&self, other: CpuFlags) -> bool

Returns true if there are flags common to both self and other.

pub fn contains(&self, other: CpuFlags) -> bool

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: CpuFlags)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: CpuFlags)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: CpuFlags)

Toggles the specified flags in-place.

pub fn set(&mut self, other: CpuFlags, value: bool)

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Extend<CpuFlags> for CpuFlags

impl Clone for CpuFlags

impl Copy for CpuFlags

impl Eq for CpuFlags

impl Ord for CpuFlags

impl PartialEq<CpuFlags> for CpuFlags

impl PartialOrd<CpuFlags> for CpuFlags

impl Debug for CpuFlags

impl Sub<CpuFlags> for CpuFlags

type Output = CpuFlags

The resulting type after applying the - operator.

fn sub(self, other: CpuFlags) -> CpuFlags

Returns the set difference of the two sets of flags.

impl SubAssign<CpuFlags> for CpuFlags

fn sub_assign(&mut self, other: CpuFlags)

Disables all flags enabled in the set.

impl Not for CpuFlags

type Output = CpuFlags

The resulting type after applying the ! operator.

fn not(self) -> CpuFlags

Returns the complement of this set of flags.

impl BitAnd<CpuFlags> for CpuFlags

type Output = CpuFlags

The resulting type after applying the & operator.

fn bitand(self, other: CpuFlags) -> CpuFlags

Returns the intersection between the two sets of flags.

impl BitOr<CpuFlags> for CpuFlags

type Output = CpuFlags

The resulting type after applying the | operator.

fn bitor(self, other: CpuFlags) -> CpuFlags

Returns the union of the two sets of flags.

impl BitXor<CpuFlags> for CpuFlags

type Output = CpuFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: CpuFlags) -> CpuFlags

Returns the left flags, but with all the right flags toggled.

impl BitAndAssign<CpuFlags> for CpuFlags

fn bitand_assign(&mut self, other: CpuFlags)

Disables all flags disabled in the set.

impl BitOrAssign<CpuFlags> for CpuFlags

fn bitor_assign(&mut self, other: CpuFlags)

Adds the set of flags.

impl BitXorAssign<CpuFlags> for CpuFlags

fn bitxor_assign(&mut self, other: CpuFlags)

Toggles the set of flags.

impl Hash for CpuFlags

impl FromIterator<CpuFlags> for CpuFlags

impl Octal for CpuFlags

impl Binary for CpuFlags

impl LowerHex for CpuFlags

impl UpperHex for CpuFlags

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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