Skip to content

Commit

Permalink
fix(examples/vhdl/array_axis_vcs): add copyright notices
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Apr 8, 2019
1 parent a4c82af commit 14f9c2e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
6 changes: 6 additions & 0 deletions examples/vhdl/array_axis_vcs/src/test/pkg_c.vhd
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
-- You can obtain one at http://mozilla.org/MPL/2.0/.
--
-- Copyright (c) 2014-2019, Lars Asplund lars.anders.asplund@gmail.com

package pkg_c is

function get_param(f: integer) return integer;
Expand Down
14 changes: 13 additions & 1 deletion examples/vhdl/array_axis_vcs/src/test/tb_c_axis_loop.vhd
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
-- You can obtain one at http://mozilla.org/MPL/2.0/.
--
-- Copyright (c) 2014-2019, Lars Asplund lars.anders.asplund@gmail.com

-- This testbench is a Minimum Working Example (MWE) of VUnit's resources to read/write data from a buffer
-- allocated in a foreign C application, and to verify AXI4-Stream components. Data is sent to an AXI4-Stream
-- Slave. The AXI4-Stream Slave is expected to be connected to an AXI4-Stream Master either directly or
-- (preferredly) through a FIFO, thus composing a loopback. Therefore, as data is pushed to the AXI4-Stream
-- Slave interface, the output is read from the AXI4-Stream Master interface and it is saved back to the buffer
-- shared with the software application.

library ieee;
context ieee.ieee_std_context;

library vunit_lib;
context vunit_lib.vunit_context;
context vunit_lib.vc_context;
use vunit_lib.core_pkg.stop;

use work.pkg_c;
use work.pkg_c.all;
Expand Down
6 changes: 6 additions & 0 deletions examples/vhdl/array_axis_vcs/src/test/tb_vc_axis_loop.vhd
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
-- You can obtain one at http://mozilla.org/MPL/2.0/.
--
-- Copyright (c) 2014-2019, Lars Asplund lars.anders.asplund@gmail.com

library ieee;
context ieee.ieee_std_context;

Expand Down

0 comments on commit 14f9c2e

Please sign in to comment.