summaryrefslogtreecommitdiff
path: root/testsuite/gna/bug24326/tb_thingy9.vhdl
blob: 493b20d3881c7530951d8761f4f7c19665a7fa5e (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
entity tb_thingy is
end tb_thingy;

architecture tb of tb_thingy is
	component thingy is
		generic (
			a_a : integer
		);
		port (
			x%x : in bit; -- <==
			y_y : out bit
		);
	end component;
	signal stimuli : bit;
	signal response : bit;
begin

	dut : thingy
	generic map (
		a_a => 42
	)
	port map (
		x_x => stimuli,
		y_y => response
	);

end tb;