-
Notifications
You must be signed in to change notification settings - Fork 0
/
Shift_Registers.vhi
37 lines (32 loc) · 1.08 KB
/
Shift_Registers.vhi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
-- VHDL Instantiation Created from source file Shift_Registers.vhd -- 23:37:22 11/14/2019
--
-- Notes:
-- 1) This instantiation template has been automatically generated using types
-- std_logic and std_logic_vector for the ports of the instantiated module
-- 2) To use this template to instantiate this entity, cut-and-paste and then edit
COMPONENT Shift_Registers
PORT(
Data_In : IN std_logic_vector(7 downto 0);
clk_in : IN std_logic;
First_byte : OUT std_logic_vector(7 downto 0);
Second_byte : OUT std_logic_vector(7 downto 0);
Third_byte : OUT std_logic_vector(7 downto 0);
Forth_byte : OUT std_logic_vector(7 downto 0);
Fifth_byte : OUT std_logic_vector(7 downto 0);
Sixth_byte : OUT std_logic_vector(7 downto 0);
Seventh_byte : OUT std_logic_vector(7 downto 0);
Eighth_byte : OUT std_logic_vector(7 downto 0)
);
END COMPONENT;
Inst_Shift_Registers: Shift_Registers PORT MAP(
Data_In => ,
clk_in => ,
First_byte => ,
Second_byte => ,
Third_byte => ,
Forth_byte => ,
Fifth_byte => ,
Sixth_byte => ,
Seventh_byte => ,
Eighth_byte =>
);