pub struct RAM<D: Synth, const N: usize> {
pub read_address: Signal<In, Bits<N>>,
pub read_clock: Signal<In, Clock>,
pub read_data: Signal<Out, D>,
pub write_address: Signal<In, Bits<N>>,
pub write_clock: Signal<In, Clock>,
pub write_data: Signal<In, D>,
pub write_enable: Signal<In, bool>,
/* private fields */
}
Fields§
§read_address: Signal<In, Bits<N>>
§read_clock: Signal<In, Clock>
§read_data: Signal<Out, D>
§write_address: Signal<In, Bits<N>>
§write_clock: Signal<In, Clock>
§write_data: Signal<In, D>
§write_enable: Signal<In, bool>
Implementations§
Trait Implementations§
Source§impl<D: Synth, const N: usize> Block for RAM<D, N>
impl<D: Synth, const N: usize> Block for RAM<D, N>
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<D, const N: usize> Freeze for RAM<D, N>where
D: Freeze,
impl<D, const N: usize> RefUnwindSafe for RAM<D, N>where
D: RefUnwindSafe,
impl<D, const N: usize> Send for RAM<D, N>where
D: Send,
impl<D, const N: usize> Sync for RAM<D, N>where
D: Sync,
impl<D, const N: usize> Unpin for RAM<D, N>where
D: Unpin,
impl<D, const N: usize> UnwindSafe for RAM<D, N>where
D: UnwindSafe + RefUnwindSafe,
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