aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/issues/issue73/cell2.vhdl
blob: e55aac2e492b87a2b215b528b7cb651b6e5ab346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
library ieee;
use ieee.std_logic_1164.all;

entity cell2 is
  port (
    O: out std_logic
  );
end entity cell2;

architecture rtl of cell2 is
begin
  O <= '1';
end architecture rtl;