blob: 2e0f694c7ac24bc809342516e176ab234e62621f (
plain)
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
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use work.all;
entity tbCrashExample2 is
generic (
vectorFilename : string
);
end entity tbCrashExample2;
architecture BEHAVORIAL of tbCrashExample2 is
--! General Simulation variables/signals
signal fVctrEnd : boolean; --! Flag from vector reader to indicate file end
signal vctrCmt : string(1 to 256); --! Current vector line comment
signal syncPulse : std_logic; --! Main Sync Signal
signal syncCount : integer; --! Sync count
signal val1 : std_logic_vector(15 downto 0);
signal val2 : std_logic_vector(15 downto 0);
signal val3 : std_logic_vector(15 downto 0);
begin
cmp_TestVector : entity crashExample(BEHAVIORAL)
port map ( vctrFlNm => vectorFilename,
fEnd => fVctrEnd,
syncPulse => syncPulse,
syncCount => syncCount,
v1 => val1,
v2 => val2,
v3 => val3,
vctrCmt => vctrCmt);
end BEHAVORIAL;
|