1 ----------------------------------------------------------------------------------
5 -- Create Date: 15:01:49 03/09/2017
7 -- Module Name: register - Behavioral
16 -- Revision 0.01 - File Created
17 -- Additional Comments:
19 ----------------------------------------------------------------------------------
21 use IEEE.STD_LOGIC_1164.
ALL;
23 -- Uncomment the following library declaration if using
24 -- arithmetic functions with Signed or Unsigned values
25 --use IEEE.NUMERIC_STD.ALL;
27 -- Uncomment the following library declaration if instantiating
28 -- any Xilinx primitives in this code.
30 --use UNISIM.VComponents.all;
33 Port ( clk
: in STD_LOGIC;
34 data_in
: in STD_LOGIC_VECTOR (3 downto 0);
35 data_out
: out STD_LOGIC_VECTOR (3 downto 0));
38 architecture Behavioral
of register is