---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 11:28:01 04/13/2021 -- Design Name: -- Module Name: BR - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values --use IEEE.NUMERIC_STD.ALL; -- Uncomment the following library declaration if instantiating -- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity BR is Port ( A_addr : in STD_LOGIC_VECTOR (3 downto 0); B_addr : in STD_LOGIC_VECTOR (3 downto 0); W_addr : in STD_LOGIC_VECTOR (3 downto 0); W : in STD_LOGIC; Data : in STD_LOGIC_VECTOR (7 downto 0); RST : in STD_LOGIC; CLK : in STD_LOGIC; QA : out STD_LOGIC_VECTOR (7 downto 0); QB : out STD_LOGIC_VECTOR (7 downto 0)); end BR; architecture Behavioral of BR is begin end Behavioral;