1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
entity tb_thingy is end tb_thingy; architecture tb of tb_thingy is component thingy is port ( x_x : in bit; y_y : out bit ); end component; signal stimuli : bit; signal response : bit; begin dut : thingy port map ( x-x => stimuli, -- <== spelling error y_y => response ); end tb; type='application/atom+xml'/>
![]() |
index : iCE40/yosys | |
[no description] |
aboutsummaryrefslogtreecommitdiffstats |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|