Skip to content

Commit 92bd927

Browse files
committed
Fixed linting issues.
1 parent c2e0a3d commit 92bd927

20 files changed

Lines changed: 20 additions & 22 deletions

examples/vhdl/vhdl_configuration/dff.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
-- You can obtain one at http://mozilla.org/MPL/2.0/.
44
--
5-
-- Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
5+
-- Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
66
library ieee;
77
use ieee.std_logic_1164.all;
88

examples/vhdl/vhdl_configuration/handling_generics_limitation/tb_reset.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
-- You can obtain one at http://mozilla.org/MPL/2.0/.
44
--
5-
-- Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
5+
-- Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
66
--
77
-- Description: Instead of having a testbench containing a shared test fixture
88
-- and then use VHDL configurations to select different test runners implementing

examples/vhdl/vhdl_configuration/handling_generics_limitation/tb_selecting_dut_with_generate_statement.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
-- You can obtain one at http://mozilla.org/MPL/2.0/.
44
--
5-
-- Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
5+
-- Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
66
--
77
-- Description: This is an example of a testbench using a generic instead
88
-- of VHDL configurations to select the DUT to run. Without VHDL configurations

examples/vhdl/vhdl_configuration/handling_generics_limitation/tb_state_change.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
-- You can obtain one at http://mozilla.org/MPL/2.0/.
44
--
5-
-- Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
5+
-- Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
66
--
77
-- Description: Instead of having a testbench containing a shared test fixture
88
-- and then use VHDL configurations to select different test runners implementing

examples/vhdl/vhdl_configuration/handling_generics_limitation/test_fixture.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
-- You can obtain one at http://mozilla.org/MPL/2.0/.
44
--
5-
-- Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
5+
-- Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
66

77
library ieee;
88
use ieee.std_logic_1164.all;

examples/vhdl/vhdl_configuration/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
55
# You can obtain one at http://mozilla.org/MPL/2.0/.
66
#
7-
# Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
7+
# Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
88

99
from pathlib import Path
1010
from vunit import VUnit

examples/vhdl/vhdl_configuration/tb_selecting_dut_with_vhdl_configuration.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
-- You can obtain one at http://mozilla.org/MPL/2.0/.
44
--
5-
-- Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
5+
-- Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
66
--
77
-- Description: This is an example of a testbench using VHDL configurations
88
-- to select DUT architecture

examples/vhdl/vhdl_configuration/tb_selecting_test_runner_with_vhdl_configuration.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
-- You can obtain one at http://mozilla.org/MPL/2.0/.
44
--
5-
-- Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
5+
-- Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
66
--
77
-- Description: This is an example of a testbench using separate architectures
88
-- of a test runner entity to define different tests. This is a structure

examples/vhdl/vhdl_configuration/test_reset.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
-- You can obtain one at http://mozilla.org/MPL/2.0/.
44
--
5-
-- Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
5+
-- Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
66

77
library vunit_lib;
88
context vunit_lib.vunit_context;

examples/vhdl/vhdl_configuration/test_runner.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
-- You can obtain one at http://mozilla.org/MPL/2.0/.
44
--
5-
-- Copyright (c) 2014-2022, Lars Asplund lars.anders.asplund@gmail.com
5+
-- Copyright (c) 2014-2023, Lars Asplund lars.anders.asplund@gmail.com
66

77
library ieee;
88
use ieee.std_logic_1164.all;

0 commit comments

Comments
 (0)