blob: 32a5358c6bb2647c8d3c0a5667e7b9a62a35526e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
library ieee;
use ieee.std_logic_1164.all;
entity cell1 is
port (
O: out std_logic
);
end entity cell1;
architecture rtl of cell1 is
begin
O <= '0';
end architecture rtl;
|