aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue2074/bitvec.vhdl
blob: abd0786e388a48c49dfb4a564ef09282faf5f971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
library ieee;
use ieee.std_logic_1164.all;

entity bitvec is
port (
	clk : in std_logic;
	d : in bit_vector(7 downto 0);
	q : out bit_vector(7 downto 0)
);
end entity;

architecture rtl of bitvec is
	constant a : bit_vector(7 downto 0) := X"5a";
begin
	q <= d and a;
end architecture;