Struct moa_core::Bus

source ·
pub struct Bus {
    blocks: Vec<Block>,
    ignore_unmapped: bool,
    watchers: Vec<Address>,
    watcher_modified: bool,
}
Expand description

A bus-like collection of Addressable Devices mapped to different address ranges

This is the fundamental means of connecting devices together to a CPU implementation.

Fields§

§blocks: Vec<Block>§ignore_unmapped: bool§watchers: Vec<Address>§watcher_modified: bool

Implementations§

source§

impl Bus

source

pub fn set_ignore_unmapped(&mut self, ignore_unmapped: bool)

source

pub fn clear_all_bus_devices(&mut self)

source

pub fn insert(&mut self, base: Address, dev: Device)

source

pub fn get_device_at( &self, addr: Address, count: usize ) -> Result<(Device, Address), Error>

source

pub fn dump_memory(&mut self, clock: Instant, addr: Address, count: Address)

source

pub fn add_watcher(&mut self, addr: Address)

source

pub fn remove_watcher(&mut self, addr: Address)

source

pub fn check_and_reset_watcher_modified(&mut self) -> bool

Trait Implementations§

source§

impl Addressable for Bus

source§

fn size(&self) -> usize

source§

fn read( &mut self, clock: Instant, addr: Address, data: &mut [u8] ) -> Result<(), Error>

source§

fn write( &mut self, clock: Instant, addr: Address, data: &[u8] ) -> Result<(), Error>

source§

fn read_u8(&mut self, clock: Instant, addr: Address) -> Result<u8, Error>

source§

fn read_beu16(&mut self, clock: Instant, addr: Address) -> Result<u16, Error>

source§

fn read_leu16(&mut self, clock: Instant, addr: Address) -> Result<u16, Error>

source§

fn read_beu32(&mut self, clock: Instant, addr: Address) -> Result<u32, Error>

source§

fn read_leu32(&mut self, clock: Instant, addr: Address) -> Result<u32, Error>

source§

fn write_u8( &mut self, clock: Instant, addr: Address, value: u8 ) -> Result<(), Error>

source§

fn write_beu16( &mut self, clock: Instant, addr: Address, value: u16 ) -> Result<(), Error>

source§

fn write_leu16( &mut self, clock: Instant, addr: Address, value: u16 ) -> Result<(), Error>

source§

fn write_beu32( &mut self, clock: Instant, addr: Address, value: u32 ) -> Result<(), Error>

source§

fn write_leu32( &mut self, clock: Instant, addr: Address, value: u32 ) -> Result<(), Error>

source§

impl Clone for Bus

source§

fn clone(&self) -> Bus

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for Bus

source§

fn default() -> Bus

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Bus

§

impl !Send for Bus

§

impl !Sync for Bus

§

impl Unpin for Bus

§

impl !UnwindSafe for Bus

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.