-
Notifications
You must be signed in to change notification settings - Fork 0
/
tstbnch.vhd
50 lines (40 loc) · 1.31 KB
/
tstbnch.vhd
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
-------------------------------------------------------------------------------
--
-- Title : tstbnch
-- Design : project_part1
-- Author : thomas plourde
-- Company : HP Inc.
--
-------------------------------------------------------------------------------
--
-- File : E:\ESE 345\Project_attempt2\project_part1\src\tstbnch.vhd
-- Generated : Sat Nov 26 13:38:31 2022
-- From : interface description file
-- By : Itf2Vhdl ver. 1.22
--
-------------------------------------------------------------------------------
--
-- Description :
--
-------------------------------------------------------------------------------
--{{ Section below this comment is automatically maintained
-- and may be overwritten
--{entity {tstbnch} architecture {tstbnch}}
library IEEE;
package custom_types is
use IEEE.std_logic_1164.all;
-- type std_logic_aoa is array (0 to 31) of std_logic_vector(127 downto 0);
type a is array (0 to 63) of std_logic_vector (24 downto 0);
end package;
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
use work.all;
entity tstbnch is
end tstbnch;
--}} End of automatically maintained section
architecture tstbnch of tstbnch is
signal clk: std_logic;
signal PC: integer;
begin
end tstbnch;