1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package repro1_pkg is signal s : bit; constant cst : natural := 5; end; use work.repro1_pkg.all; entity repro1 is port (a,b : bit; c : out bit); end repro1; architecture behav of repro1 is begin c <= a xor b; end behav;