-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCPU_gen.vhi
More file actions
31 lines (26 loc) · 718 Bytes
/
CPU_gen.vhi
File metadata and controls
31 lines (26 loc) · 718 Bytes
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
-- VHDL Instantiation Created from source file CPU_gen.vhd -- 20:06:04 10/29/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 CPU_gen
PORT(
clk : IN std_logic;
rst : IN std_logic;
trig : IN std_logic;
Address : OUT std_logic_vector(15 downto 0);
wr_rd : OUT std_logic;
cs : OUT std_logic;
DOut : OUT std_logic_vector(7 downto 0)
);
END COMPONENT;
Inst_CPU_gen: CPU_gen PORT MAP(
clk => ,
rst => ,
trig => ,
Address => ,
wr_rd => ,
cs => ,
DOut =>
);