---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 10/19/2020 09:09:54 PM -- Design Name: -- Module Name: latch - 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 leaf cells in this code. --library UNISIM; --use UNISIM.VComponents.all; entity latch is Port ( clk : in STD_LOGIC; rst : in STD_LOGIC; a : in STD_LOGIC; b : out STD_LOGIC); end latch; architecture Behavioral of latch is begin end Behavioral;