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)