[][src]Struct z80emu::CpuFlags

pub struct CpuFlags { /* fields omitted */ }

Z80 Cpu Flags.

Implementations

impl CpuFlags[src]

pub const S: CpuFlags[src]

Sign Flag.

pub const Z: CpuFlags[src]

Zero Flag.

pub const Y: CpuFlags[src]

Undocumented bit 5 of the Flag.

pub const H: CpuFlags[src]

Half Carry Flag.

pub const X: CpuFlags[src]

Undocumented bit 3 of the Flag.

pub const PV: CpuFlags[src]

Parity/Overflow Flag.

pub const N: CpuFlags[src]

Add/Subtract Flag.

pub const C: CpuFlags[src]

Carry Flag.

pub const P: CpuFlags[src]

An alias of CpuFlags::PV.

pub const V: CpuFlags[src]

An alias of CpuFlags::PV.

pub const XY: CpuFlags[src]

A mask of both undocumented Flag's bits 3 and 5. CpuFlags::X | CpuFlags::Y.

pub const HMASK: CpuFlags[src]

A mask over bits 0 to 3 being used to detect half-byte carry.

pub const fn empty() -> CpuFlags[src]

Returns an empty set of flags

pub const fn all() -> CpuFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u8[src]

Returns the raw value of the flags currently stored.

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

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

pub const fn from_bits_truncate(bits: u8) -> CpuFlags[src]

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

pub const unsafe fn from_bits_unchecked(bits: u8) -> CpuFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: CpuFlags) -> bool[src]

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

pub const fn contains(&self, other: CpuFlags) -> bool[src]

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

impl CpuFlags[src]

pub fn reset(&mut self)[src]

Resets all CpuFlags to false.

pub fn sf(self) -> bool[src]

Returns a value of the Sign Flag.

pub fn zf(self) -> bool[src]

Returns a value of the Zero Flag.

pub fn hf(self) -> bool[src]

Returns a value of the Half Carry Flag.

pub fn pvf(self) -> bool[src]

Returns a value of the Parity/Overflow Flag.

pub fn nf(self) -> bool[src]

Returns a value of the Add/Subtract Flag.

pub fn cf(self) -> bool[src]

Returns a value of the Carry Flag.

pub fn mask_cvz(cf: bool, vf: bool, zf: bool) -> Self[src]

Returns a new instance of CpuFlags with Flags C | V | Z where each Flag is set depending on the value being given in the arguments.

pub fn mask_sign(res: u8) -> Self[src]

Returns a new instance of CpuFlags with the S Flag being set depending on the top-most bit of the given 8-bit unsigned value being set.

pub fn mask_zero(res: u8) -> Self[src]

Returns a new instance of CpuFlags with the Z Flag being set depending on the given value being equal to 0 (zero).

pub fn mask_carry(cf: bool) -> Self[src]

Returns a new instance of CpuFlags with the C Flag being set depending on the given value.

pub fn mask_nf(nf: bool) -> Self[src]

Returns a new instance of CpuFlags with the N Flag being set depending on the given value.

pub fn mask_hf(hf: bool) -> Self[src]

Returns a new instance of CpuFlags with the H Flag being set depending on the given value.

pub fn mask_hcf(hcf: bool) -> Self[src]

Returns a new instance of CpuFlags with Flags C | H being set depending on the given value.

pub fn mask_pvf(pvf: bool) -> Self[src]

Returns a new instance of CpuFlags with the PV Flag being set depending on the given value.

pub fn parity(res: u8) -> Self[src]

Returns a new instance of CpuFlags with the PV Flag being set if the number of bits equal to 1 is even in the given value.

pub fn mask_xy(res: u8) -> Self[src]

Returns a new instance of CpuFlags with Flags X | Y being set depending on the bit value 3 for X and 5 for Y in the given argument.

pub fn mask_sxy(res: u8) -> Self[src]

Returns a new instance of CpuFlags with Flags S | X | Y being set depending on the bit value 7 for S, 3 for X and 5 for Y in the given argument.

Trait Implementations

impl Binary for CpuFlags[src]

impl BitAnd<CpuFlags> for CpuFlags[src]

type Output = CpuFlags

The resulting type after applying the & operator.

fn bitand(self, other: CpuFlags) -> CpuFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<CpuFlags> for CpuFlags[src]

fn bitand_assign(&mut self, other: CpuFlags)[src]

Disables all flags disabled in the set.

impl BitOr<CpuFlags> for CpuFlags[src]

type Output = CpuFlags

The resulting type after applying the | operator.

fn bitor(self, other: CpuFlags) -> CpuFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<CpuFlags> for CpuFlags[src]

fn bitor_assign(&mut self, other: CpuFlags)[src]

Adds the set of flags.

impl BitXor<CpuFlags> for CpuFlags[src]

type Output = CpuFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: CpuFlags) -> CpuFlags[src]

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

impl BitXorAssign<CpuFlags> for CpuFlags[src]

fn bitxor_assign(&mut self, other: CpuFlags)[src]

Toggles the set of flags.

impl Clone for CpuFlags[src]

impl Copy for CpuFlags[src]

impl Debug for CpuFlags[src]

impl Default for CpuFlags[src]

impl Eq for CpuFlags[src]

impl Extend<CpuFlags> for CpuFlags[src]

impl FromIterator<CpuFlags> for CpuFlags[src]

impl Hash for CpuFlags[src]

impl LowerHex for CpuFlags[src]

impl Not for CpuFlags[src]

type Output = CpuFlags

The resulting type after applying the ! operator.

fn not(self) -> CpuFlags[src]

Returns the complement of this set of flags.

impl Octal for CpuFlags[src]

impl Ord for CpuFlags[src]

impl PartialEq<CpuFlags> for CpuFlags[src]

impl PartialOrd<CpuFlags> for CpuFlags[src]

impl StructuralEq for CpuFlags[src]

impl StructuralPartialEq for CpuFlags[src]

impl Sub<CpuFlags> for CpuFlags[src]

type Output = CpuFlags

The resulting type after applying the - operator.

fn sub(self, other: CpuFlags) -> CpuFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<CpuFlags> for CpuFlags[src]

fn sub_assign(&mut self, other: CpuFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for CpuFlags[src]

Auto Trait Implementations

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> 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.