blob: c112b23bc06d5361f813aa796db7b05723377716 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
entity repro is
port (a, b : bit_vector(7 downto 0);
o : out bit);
end repro;
architecture arch of repro is
function f (a, b : bit_vector(7 downto 0)) return boolean is
begin
return a = x"ca" and b = x"fe";
end f;
begin
o <= '1' when f(a,b) else '0';
end arch;
|