1 |
2 |
pela |
----------------------------------------------------------------------
|
2 |
|
|
---- ----
|
3 |
|
|
---- PlTbUtils Example Testcase Entity for Example Testbench ----
|
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 is an example which demonstrates how PlTbUtils ----
|
14 |
|
|
---- can be used. ----
|
15 |
|
|
---- ----
|
16 |
|
|
---- ----
|
17 |
|
|
---- To Do: ----
|
18 |
|
|
---- - ----
|
19 |
|
|
---- ----
|
20 |
|
|
---- Author(s): ----
|
21 |
|
|
---- - Per Larsson, pela@opencores.org ----
|
22 |
|
|
---- ----
|
23 |
|
|
----------------------------------------------------------------------
|
24 |
|
|
---- ----
|
25 |
|
|
---- Copyright (C) 2013 Authors and OPENCORES.ORG ----
|
26 |
|
|
---- ----
|
27 |
|
|
---- This source file may be used and distributed without ----
|
28 |
|
|
---- restriction provided that this copyright statement is not ----
|
29 |
|
|
---- removed from the file and that any derivative work contains ----
|
30 |
|
|
---- the original copyright notice and the associated disclaimer. ----
|
31 |
|
|
---- ----
|
32 |
|
|
---- This source file is free software; you can redistribute it ----
|
33 |
|
|
---- and/or modify it under the terms of the GNU Lesser General ----
|
34 |
|
|
---- Public License as published by the Free Software Foundation; ----
|
35 |
|
|
---- either version 2.1 of the License, or (at your option) any ----
|
36 |
|
|
---- later version. ----
|
37 |
|
|
---- ----
|
38 |
|
|
---- This source is distributed in the hope that it will be ----
|
39 |
|
|
---- useful, but WITHOUT ANY WARRANTY; without even the implied ----
|
40 |
|
|
---- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ----
|
41 |
|
|
---- PURPOSE. See the GNU Lesser General Public License for more ----
|
42 |
|
|
---- details. ----
|
43 |
|
|
---- ----
|
44 |
|
|
---- You should have received a copy of the GNU Lesser General ----
|
45 |
|
|
---- Public License along with this source; if not, download it ----
|
46 |
|
|
---- from http://www.opencores.org/lgpl.shtml ----
|
47 |
|
|
---- ----
|
48 |
|
|
----------------------------------------------------------------------
|
49 |
|
|
library ieee;
|
50 |
|
|
use ieee.std_logic_1164.all;
|
51 |
|
|
|
52 |
|
|
entity tc_example is
|
53 |
|
|
generic (
|
54 |
|
|
G_WIDTH : integer := 8
|
55 |
|
|
);
|
56 |
|
|
port (
|
57 |
|
|
clk : in std_logic;
|
58 |
|
|
rst : out std_logic;
|
59 |
|
|
carry_in : out std_logic;
|
60 |
|
|
x : out std_logic_vector(G_WIDTH-1 downto 0);
|
61 |
|
|
y : out std_logic_vector(G_WIDTH-1 downto 0);
|
62 |
|
|
sum : in std_logic_vector(G_WIDTH-1 downto 0);
|
63 |
|
|
carry_out : in std_logic
|
64 |
|
|
);
|
65 |
|
|
end entity tc_example;
|