verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1153 / ent.vhdl
blob59ec87a09572c3d247e55fdb8360b95a11869faf
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity ent is
5         port (
6                 a, b : in std_logic;
7                 q : out std_logic
8         );
9 end;
11 architecture a of ent is
12 begin
13         q <= a xnor b;
14 end;