Struct rust_hdl_widgets::fifo::fifo_register::RegisterFIFO
source · pub struct RegisterFIFO<T: Synth> {
pub data_in: Signal<In, T>,
pub data_out: Signal<Out, T>,
pub write: Signal<In, Bit>,
pub read: Signal<In, Bit>,
pub full: Signal<Out, Bit>,
pub empty: Signal<Out, Bit>,
pub clock: Signal<In, Clock>,
/* private fields */
}Fields§
§data_in: Signal<In, T>§data_out: Signal<Out, T>§write: Signal<In, Bit>§read: Signal<In, Bit>§full: Signal<Out, Bit>§empty: Signal<Out, Bit>§clock: Signal<In, Clock>Trait Implementations§
source§impl<T: Synth> Block for RegisterFIFO<T>
impl<T: Synth> Block for RegisterFIFO<T>
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)