1 |
2 |
pela |
----------------------------------------------------------------------
|
2 |
|
|
---- ----
|
3 |
|
|
---- PlTbUtils Component Declarations ----
|
4 |
|
|
---- ----
|
5 |
|
|
---- This file is part of the PlTbUtils project ----
|
6 |
|
|
---- http://opencores.org/project,pltbutils ----
|
7 |
|
|
---- ----
|
8 |
|
|
---- Description: ----
|
9 |
|
|
---- PlTbUtils is a collection of functions, procedures and ----
|
10 |
|
|
---- components for easily creating stimuli and checking response ----
|
11 |
|
|
---- in automatic self-checking testbenches. ----
|
12 |
|
|
---- ----
|
13 |
|
|
---- This file declares testbench components, which are defined ----
|
14 |
|
|
---- in pltbutils_comp.vhd . ----
|
15 |
|
|
---- "use" this file in your testbech, e.g. ----
|
16 |
|
|
---- use work.pltbutils_comp_pkg.all; ----
|
17 |
|
|
---- ----
|
18 |
|
|
---- ----
|
19 |
|
|
---- To Do: ----
|
20 |
|
|
---- - ----
|
21 |
|
|
---- ----
|
22 |
|
|
---- Author(s): ----
|
23 |
|
|
---- - Per Larsson, pela@opencores.org ----
|
24 |
|
|
---- ----
|
25 |
|
|
----------------------------------------------------------------------
|
26 |
|
|
---- ----
|
27 |
|
|
---- Copyright (C) 2013 Authors and OPENCORES.ORG ----
|
28 |
|
|
---- ----
|
29 |
|
|
---- This source file may be used and distributed without ----
|
30 |
|
|
---- restriction provided that this copyright statement is not ----
|
31 |
|
|
---- removed from the file and that any derivative work contains ----
|
32 |
|
|
---- the original copyright notice and the associated disclaimer. ----
|
33 |
|
|
---- ----
|
34 |
|
|
---- This source file is free software; you can redistribute it ----
|
35 |
|
|
---- and/or modify it under the terms of the GNU Lesser General ----
|
36 |
|
|
---- Public License as published by the Free Software Foundation; ----
|
37 |
|
|
---- either version 2.1 of the License, or (at your option) any ----
|
38 |
|
|
---- later version. ----
|
39 |
|
|
---- ----
|
40 |
|
|
---- This source is distributed in the hope that it will be ----
|
41 |
|
|
---- useful, but WITHOUT ANY WARRANTY; without even the implied ----
|
42 |
|
|
---- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ----
|
43 |
|
|
---- PURPOSE. See the GNU Lesser General Public License for more ----
|
44 |
|
|
---- details. ----
|
45 |
|
|
---- ----
|
46 |
|
|
---- You should have received a copy of the GNU Lesser General ----
|
47 |
|
|
---- Public License along with this source; if not, download it ----
|
48 |
|
|
---- from http://www.opencores.org/lgpl.shtml ----
|
49 |
|
|
---- ----
|
50 |
|
|
----------------------------------------------------------------------
|
51 |
|
|
|
52 |
|
|
library ieee;
|
53 |
|
|
use ieee.std_logic_1164.all;
|
54 |
|
|
|
55 |
|
|
package pltbutils_comp_pkg is
|
56 |
|
|
|
57 |
|
|
-- See pltbutils_comp.vhd for a description of the components.
|
58 |
|
|
|
59 |
|
|
component pltbutils_clkgen is
|
60 |
|
|
generic (
|
61 |
|
|
G_PERIOD : time := 10 ns
|
62 |
|
|
);
|
63 |
|
|
port (
|
64 |
|
|
clk_o : out std_logic;
|
65 |
|
|
stop_sim_i : in std_logic
|
66 |
|
|
);
|
67 |
|
|
end component pltbutils_clkgen;
|
68 |
|
|
|
69 |
|
|
-- Instansiation template
|
70 |
|
|
-- (copy to your own file and remove the comment characters):
|
71 |
|
|
--pltbutils_clkgen0 : pltbutils_clkgen
|
72 |
|
|
-- generic map (
|
73 |
|
|
-- G_PERIOD => G_PERIOD
|
74 |
|
|
-- )
|
75 |
|
|
-- port map (
|
76 |
|
|
-- clk_o => clk,
|
77 |
|
|
-- stop_sim_i => stop_sim
|
78 |
|
|
-- );
|
79 |
|
|
|
80 |
|
|
end package pltbutils_comp_pkg;
|
81 |
|
|
|
82 |
|
|
|