Skip to content
Snippets Groups Projects
Commit 5e17aa3c authored by Kenneth Hiemstra's avatar Kenneth Hiemstra
Browse files

added the testbenches

parent 0d645aee
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ synth_files = ...@@ -10,7 +10,7 @@ synth_files =
unb2_test_10GbE.vhd unb2_test_10GbE.vhd
test_bench_files = test_bench_files =
# tb_unb2_test_10GbE.vhd tb_unb2_test_10GbE.vhd
modelsim_copy_files = modelsim_copy_files =
../../src/hex hex ../../src/hex hex
......
-------------------------------------------------------------------------------
--
-- Copyright (C) 2015
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- JIVE (Joint Institute for VLBI in Europe) <http://www.jive.nl/>
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-------------------------------------------------------------------------------
LIBRARY IEEE, unb1_test_lib;
USE IEEE.std_logic_1164.ALL;
ENTITY tb_unb2_test_10GbE IS
END tb_unb2_test_10GbE;
ARCHITECTURE tb OF tb_unb2_test_10GbE IS
BEGIN
u_tb_unb2_test : ENTITY unb2_test_lib.tb_unb2_test
GENERIC MAP (
g_design_name => "unb2_test_10GbE",
g_sim_node_nr => 0 --node0
);
END tb;
...@@ -10,7 +10,7 @@ synth_files = ...@@ -10,7 +10,7 @@ synth_files =
unb2_test_1GbE.vhd unb2_test_1GbE.vhd
test_bench_files = test_bench_files =
# tb_unb2_test_1GbE.vhd tb_unb2_test_1GbE.vhd
modelsim_copy_files = modelsim_copy_files =
../../src/hex hex ../../src/hex hex
......
-------------------------------------------------------------------------------
--
-- Copyright (C) 2015
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- JIVE (Joint Institute for VLBI in Europe) <http://www.jive.nl/>
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-------------------------------------------------------------------------------
LIBRARY IEEE, unb1_test_lib;
USE IEEE.std_logic_1164.ALL;
ENTITY tb_unb2_test_1GbE IS
END tb_unb2_test_1GbE;
ARCHITECTURE tb OF tb_unb2_test_1GbE IS
BEGIN
u_tb_unb2_test : ENTITY unb2_test_lib.tb_unb2_test
GENERIC MAP (
g_design_name => "unb2_test_1GbE",
g_sim_node_nr => 0 --node0
);
END tb;
...@@ -10,7 +10,7 @@ synth_files = ...@@ -10,7 +10,7 @@ synth_files =
unb2_test_all.vhd unb2_test_all.vhd
test_bench_files = test_bench_files =
# tb_unb2_test_all.vhd tb_unb2_test_all.vhd
modelsim_copy_files = modelsim_copy_files =
../../src/hex hex ../../src/hex hex
......
-------------------------------------------------------------------------------
--
-- Copyright (C) 2015
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- JIVE (Joint Institute for VLBI in Europe) <http://www.jive.nl/>
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-------------------------------------------------------------------------------
LIBRARY IEEE, unb1_test_lib;
USE IEEE.std_logic_1164.ALL;
ENTITY tb_unb2_test_all IS
END tb_unb2_test_all;
ARCHITECTURE tb OF tb_unb2_test_all IS
BEGIN
u_tb_unb2_test : ENTITY unb2_test_lib.tb_unb2_test
GENERIC MAP (
g_design_name => "unb2_test_all",
g_sim_node_nr => 0 --node0
);
END tb;
...@@ -10,7 +10,7 @@ synth_files = ...@@ -10,7 +10,7 @@ synth_files =
unb2_test_ddr.vhd unb2_test_ddr.vhd
test_bench_files = test_bench_files =
# tb_unb2_test_ddr.vhd tb_unb2_test_ddr.vhd
modelsim_copy_files = modelsim_copy_files =
../../src/hex hex ../../src/hex hex
......
-------------------------------------------------------------------------------
--
-- Copyright (C) 2015
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
-- JIVE (Joint Institute for VLBI in Europe) <http://www.jive.nl/>
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-------------------------------------------------------------------------------
LIBRARY IEEE, unb1_test_lib;
USE IEEE.std_logic_1164.ALL;
ENTITY tb_unb2_test_ddr IS
END tb_unb2_test_ddr;
ARCHITECTURE tb OF tb_unb2_test_ddr IS
BEGIN
u_tb_unb2_test : ENTITY unb2_test_lib.tb_unb2_test
GENERIC MAP (
g_design_name => "unb2_test_ddr",
g_sim_node_nr => 0 --node0
);
END tb;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment