-
Notifications
You must be signed in to change notification settings - Fork 0
/
top.vhi
33 lines (28 loc) · 843 Bytes
/
top.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
-- VHDL Instantiation Created from source file top.vhd -- 23:34:56 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 top
PORT(
CLK_20M : IN std_logic;
column : IN std_logic_vector(3 downto 0);
KEY0 : IN std_logic;
DOTMATRIX_DATA_IN : OUT std_logic;
DOTMATRIX_CLK : OUT std_logic;
DOTMATRIX_NCLR : OUT std_logic;
DOTMATRIX_R : OUT std_logic_vector(16 downto 1);
row : OUT std_logic_vector(3 downto 0)
);
END COMPONENT;
Inst_top: top PORT MAP(
DOTMATRIX_DATA_IN => ,
DOTMATRIX_CLK => ,
DOTMATRIX_NCLR => ,
DOTMATRIX_R => ,
CLK_20M => ,
row => ,
column => ,
KEY0 =>
);