head tail filter testing done

This commit is contained in:
2026-04-17 18:14:15 +05:30
parent e4b91625ea
commit a8e7c14f45
294 changed files with 209839 additions and 208687 deletions

View File

@@ -0,0 +1,28 @@
library ieee;
use ieee.std_logic_1164.all;
use work.genpackage.all;
entity top is
port (
EQ : out std_logic;
A : in std_logic_vector(12 downto 0);
B : in std_logic_vector(12 downto 0) );
end entity top;
architecture gen of top is
component CMP_EQ
generic (
width : integer );
port (
EQ : out std_logic;
A : in std_logic_vector;
B : in std_logic_vector );
end component;
begin
I1: CMP_EQ
generic map (
width => 13 )
port map (
EQ => EQ,
A => A,
B => B );
end architecture gen;