Skip to content

Commit 14f9c2e

Browse files
committed
fix(examples/vhdl/array_axis_vcs): add copyright notices
1 parent a4c82af commit 14f9c2e

3 files changed

Lines changed: 25 additions & 1 deletion

File tree

examples/vhdl/array_axis_vcs/src/test/pkg_c.vhd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
-- This Source Code Form is subject to the terms of the Mozilla Public
2+
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
3+
-- You can obtain one at http://mozilla.org/MPL/2.0/.
4+
--
5+
-- Copyright (c) 2014-2019, Lars Asplund lars.anders.asplund@gmail.com
6+
17
package pkg_c is
28

39
function get_param(f: integer) return integer;

examples/vhdl/array_axis_vcs/src/test/tb_c_axis_loop.vhd

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1+
-- This Source Code Form is subject to the terms of the Mozilla Public
2+
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
3+
-- You can obtain one at http://mozilla.org/MPL/2.0/.
4+
--
5+
-- Copyright (c) 2014-2019, Lars Asplund lars.anders.asplund@gmail.com
6+
7+
-- This testbench is a Minimum Working Example (MWE) of VUnit's resources to read/write data from a buffer
8+
-- allocated in a foreign C application, and to verify AXI4-Stream components. Data is sent to an AXI4-Stream
9+
-- Slave. The AXI4-Stream Slave is expected to be connected to an AXI4-Stream Master either directly or
10+
-- (preferredly) through a FIFO, thus composing a loopback. Therefore, as data is pushed to the AXI4-Stream
11+
-- Slave interface, the output is read from the AXI4-Stream Master interface and it is saved back to the buffer
12+
-- shared with the software application.
13+
114
library ieee;
215
context ieee.ieee_std_context;
316

417
library vunit_lib;
518
context vunit_lib.vunit_context;
619
context vunit_lib.vc_context;
7-
use vunit_lib.core_pkg.stop;
820

921
use work.pkg_c;
1022
use work.pkg_c.all;

examples/vhdl/array_axis_vcs/src/test/tb_vc_axis_loop.vhd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
-- This Source Code Form is subject to the terms of the Mozilla Public
2+
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
3+
-- You can obtain one at http://mozilla.org/MPL/2.0/.
4+
--
5+
-- Copyright (c) 2014-2019, Lars Asplund lars.anders.asplund@gmail.com
6+
17
library ieee;
28
context ieee.ieee_std_context;
39

0 commit comments

Comments
 (0)