entity tb_snum02 is end tb_snum02; library ieee; use ieee.std_logic_1164.all; architecture behav of tb_snum02 is signal r : boolean; begin cmp02_1: entity work.snum02 port map (r); process begin wait for 1 ns; assert r severity failure; wait; end process; end behav; link rel='vcs-git' href='git://git.panaceas.org/iCE40/ghdl' title='iCE40/ghdl Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/dff01/tb_dff10.vhdl
blob: 57234dc10ba7e8a59fe6a88d3f59b8c685d9613b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41