Skip to content

Commit 50df180

Browse files
committed
Updated license to 2025.
1 parent 95f5959 commit 50df180

File tree

504 files changed

+508
-508
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

504 files changed

+508
-508
lines changed

docs/blog/src/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-2024, Lars Asplund [email protected]
5+
-- Copyright (c) 2014-2025, Lars Asplund [email protected]
66
library ieee;
77
use ieee.std_logic_1164.all;
88

docs/blog/src/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-2024, Lars Asplund [email protected]
7+
# Copyright (c) 2014-2025, Lars Asplund [email protected]
88

99
import sys
1010
import itertools

docs/blog/src/vhdl_configuration/tb_selecting_dut_with_generics.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-2024, Lars Asplund [email protected]
5+
-- Copyright (c) 2014-2025, Lars Asplund [email protected]
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

docs/blog/src/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-2024, Lars Asplund [email protected]
5+
-- Copyright (c) 2014-2025, Lars Asplund [email protected]
66
--
77
-- Description: This is an example of a testbench using VHDL configurations
88
-- to select DUT architecture

docs/blog/src/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-2024, Lars Asplund [email protected]
5+
-- Copyright (c) 2014-2025, Lars Asplund [email protected]
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

docs/blog/src/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-2024, Lars Asplund [email protected]
5+
-- Copyright (c) 2014-2025, Lars Asplund [email protected]
66

77
library vunit_lib;
88
context vunit_lib.vunit_context;

docs/blog/src/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-2024, Lars Asplund [email protected]
5+
-- Copyright (c) 2014-2025, Lars Asplund [email protected]
66

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

docs/blog/src/vhdl_configuration/test_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-2024, Lars Asplund [email protected]
5+
-- Copyright (c) 2014-2025, Lars Asplund [email protected]
66

77
library vunit_lib;
88
context vunit_lib.vunit_context;

docs/blog/src/vunit_phases/phases_pkg.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-2024, Lars Asplund [email protected]
5+
-- Copyright (c) 2014-2025, Lars Asplund [email protected]
66

77
library vunit_lib;
88
context vunit_lib.vunit_context;

docs/blog/src/vunit_phases/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-2024, Lars Asplund [email protected]
7+
# Copyright (c) 2014-2025, Lars Asplund [email protected]
88

99
from csv import writer
1010
from pathlib import Path

0 commit comments

Comments
 (0)