iverilog/ivtest/ivltests/vhdl_and104_stdlogic.vhd

16 lines
313 B
VHDL
Raw Normal View History

library ieee;
use ieee.std_logic_1164.all;
entity and104 is
port (
a_i : in std_logic_vector (103 downto 0);
b_i : in std_logic_vector (103 downto 0);
c_o : out std_logic_vector (103 downto 0)
);
end entity and104;
architecture rtl of and104 is
begin
c_o <= a_i and b_i;
end architecture rtl;