Line 24... |
Line 24... |
---- Author(s): ----
|
---- Author(s): ----
|
---- - Per Larsson, pela@opencores.org ----
|
---- - Per Larsson, pela@opencores.org ----
|
---- ----
|
---- ----
|
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
---- ----
|
---- ----
|
---- Copyright (C) 2013 Authors and OPENCORES.ORG ----
|
---- Copyright (C) 2013-2014 Authors and OPENCORES.ORG ----
|
---- ----
|
---- ----
|
---- This source file may be used and distributed without ----
|
---- This source file may be used and distributed without ----
|
---- restriction provided that this copyright statement is not ----
|
---- restriction provided that this copyright statement is not ----
|
---- removed from the file and that any derivative work contains ----
|
---- removed from the file and that any derivative work contains ----
|
---- the original copyright notice and the associated disclaimer. ----
|
---- the original copyright notice and the associated disclaimer. ----
|
Line 50... |
Line 50... |
---- from http://www.opencores.org/lgpl.shtml ----
|
---- from http://www.opencores.org/lgpl.shtml ----
|
---- ----
|
---- ----
|
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
library ieee;
|
library ieee;
|
use ieee.std_logic_1164.all;
|
use ieee.std_logic_1164.all;
|
|
use work.pltbutils_func_pkg.all;
|
|
|
entity tc_template is
|
entity tc_template is
|
generic (
|
generic (
|
-- < Template info: add generics here if needed, or remove the generic block >
|
-- < Template info: add generics here if needed, or remove the generic block >
|
);
|
);
|
port (
|
port (
|
|
pltbs : out pltbs_t;
|
clk : in std_logic; -- Template example
|
clk : in std_logic; -- Template example
|
rst : out std_logic; -- Template example
|
rst : out std_logic; -- Template example
|
-- < Template info: add more ports for testcase component here. >
|
-- < Template info: add more ports for testcase component here. >
|
-- < Inputs on the DUT should be outputs here, >
|
-- < Inputs on the DUT should be outputs here, >
|
-- < and vice versa. >
|
-- < and vice versa. >
|