pub trait LogicJoin {
    // Provided methods
    fn join_connect(&mut self) { ... }
    fn join_hdl(
        _my_name: &str,
        _this: &str,
        _that: &str
    ) -> Vec<VerilogLink, Global> { ... }
}

Provided Methods§

source

fn join_connect(&mut self)

source

fn join_hdl( _my_name: &str, _this: &str, _that: &str ) -> Vec<VerilogLink, Global>

Implementations on Foreign Types§

source§

impl<D, const N: usize> LogicJoin for RAMWrite<D, N>where D: Synth,

source§

fn join_connect(&mut self)

source§

fn join_hdl(my_name: &str, this: &str, that: &str) -> Vec<VerilogLink, Global>

source§

impl<const D: usize> LogicJoin for SDRAMDevice<D>

source§

fn join_connect(&mut self)

source§

fn join_hdl(my_name: &str, this: &str, that: &str) -> Vec<VerilogLink, Global>

Implementors§