pub struct SDRAMFIFO<const R: usize, const C: usize, const P: u32, const D: usize, const A: usize> {
pub clock: Signal<In, Clock>,
pub sdram: SDRAMDriver<D>,
pub ram_clock: Signal<In, Clock>,
pub bus_write: FIFOWriteResponder<Bits<D>>,
pub bus_read: FIFOReadResponder<Bits<D>>,
/* private fields */
}
Fields§
§clock: Signal<In, Clock>
§sdram: SDRAMDriver<D>
§ram_clock: Signal<In, Clock>
§bus_write: FIFOWriteResponder<Bits<D>>
§bus_read: FIFOReadResponder<Bits<D>>
Implementations§
Trait Implementations§
Source§impl<const R: usize, const C: usize, const P: u32, const D: usize, const A: usize> Block for SDRAMFIFO<R, C, P, D, A>
impl<const R: usize, const C: usize, const P: u32, const D: usize, const A: usize> Block for SDRAMFIFO<R, C, P, D, A>
Source§fn connect_all(&mut self)
fn connect_all(&mut self)
Connects the internal signals of the circuit - used to initialize the circuit
Source§fn update_all(&mut self)
fn update_all(&mut self)
Propogate changes from inputs to outputs within the circuit
Source§fn has_changed(&self) -> bool
fn has_changed(&self) -> bool
Returns
true
if anything in the circuit has changed (outputs or internal state)Auto Trait Implementations§
impl<const R: usize, const C: usize, const P: u32, const D: usize, const A: usize> Freeze for SDRAMFIFO<R, C, P, D, A>
impl<const R: usize, const C: usize, const P: u32, const D: usize, const A: usize> RefUnwindSafe for SDRAMFIFO<R, C, P, D, A>
impl<const R: usize, const C: usize, const P: u32, const D: usize, const A: usize> Send for SDRAMFIFO<R, C, P, D, A>
impl<const R: usize, const C: usize, const P: u32, const D: usize, const A: usize> Sync for SDRAMFIFO<R, C, P, D, A>
impl<const R: usize, const C: usize, const P: u32, const D: usize, const A: usize> Unpin for SDRAMFIFO<R, C, P, D, A>
impl<const R: usize, const C: usize, const P: u32, const D: usize, const A: usize> UnwindSafe for SDRAMFIFO<R, C, P, D, A>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more