verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1534 / xor02.vhdl
blob9d1c6331926e0c24e3f7e34045c27b4193546726
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity xor02 is
5     port (
6         o: out bit
7     );
8 end entity;
10 architecture arch of xor02 is
11     constant x: bit_vector(0 to 0) := "1";
12     constant y: bit_vector(0 to 0) := "0";
13 begin
14     o <= x(0) xor y(0);
15 end architecture;