Skip to content

Commit 60850ef

Browse files
authored
Merge pull request chipsalliance#39 from daniellimws/license-headers
Add license header to top of all code files
2 parents 037d50d + 80a5ead commit 60850ef

File tree

52 files changed

+519
-0
lines changed

Some content is hidden

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

52 files changed

+519
-0
lines changed

tests/carry/carry.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`default_nettype none
212
`include "cblock/cblock.sim.v"
313

tests/carry/cblock/cblock.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`default_nettype none
212

313
(* whitebox *)

tests/clocks/dff_comb_one_clock/dff_comb_one_clock.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `input wire a` should be detected as a clock because it drives the flip
313
* flop.

tests/clocks/dff_one_clock/dff_one_clock.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `input wire a` should be detected as a clock because it drives the flip
313
* flop.

tests/clocks/dff_two_clocks/dff_two_clocks.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
module BLOCK(c1, c2, a, b, c, o1, o2);
212
input wire c1;
313
input wire c2;

tests/clocks/input_attr_clock/input_attr_clock.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `input wire a` should be detected as a clock because of the `(* CLOCK *)`
313
* attribute.

tests/clocks/input_attr_not_clock/block.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `input wire a` should be detected as a clock because it drives the flip
313
* flop. However, it has the attribute CLOCK set to 0 which should force it

tests/clocks/input_named_clk/input_named_clk.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `input wire clk` should be detected as a clock despite this being a black
313
* box module.

tests/clocks/input_named_rdclk/input_named_rdclk.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `input wire rdclk` should be detected as a clock despite this being a black
313
* box module.

tests/clocks/input_named_regex/block.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
(* whitebox *)
212
module BLOCK(
313
input wire clk,

tests/clocks/multiple_inputs_named_clk/multiple_inputs_named_clk.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `input wire rdclk` and `input wire wrclk` should be detected as a clock
313
* despite this being a black box module.

tests/clocks/multiple_outputs_named_clk/multiple_outputs_named_clk.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `output wire rdclk` and `output wire wrclk` should be detected as a clock
313
* despite this being a black box module.

tests/clocks/output_attr_clock/output_attr_clock.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `output wire o` should be detected as a clock because of the `(* CLOCK *)`
313
* attribute.

tests/clocks/output_named_clk/output_named_clk.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `output wire clk` should be detected as a clock despite this being a black
313
* box module.

tests/clocks/output_named_rdclk/output_named_rdclk.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
/*
212
* `output wire rdclk` should be detected as a clock despite this being a black
313
* box module.

tests/dsp/dsp_combinational/dsp_combinational.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`ifndef DSP_COMB
212
`define DSP_COMB
313
(* whitebox *)

tests/dsp/dsp_in_registered/dsp_in_registered.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`include "../../vtr/dff/dff.sim.v"
212
`include "../dsp_combinational/dsp_combinational.sim.v"
313

tests/dsp/dsp_inout_registered/dsp_inout_registered.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`include "../../vtr/dff/dff.sim.v"
212
`include "../dsp_combinational/dsp_combinational.sim.v"
313

tests/dsp/dsp_inout_registered_dualclk/dsp_inout_registered_dualclk.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`include "../../vtr/dff/dff.sim.v"
212
`include "../dsp_combinational/dsp_combinational.sim.v"
313

tests/dsp/dsp_modes/dsp_modes.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`include "../dsp_combinational/dsp_combinational.sim.v"
212
`include "../dsp_inout_registered/dsp_inout_registered.sim.v"
313
`include "../dsp_in_registered/dsp_in_registered.sim.v"

tests/dsp/dsp_out_registered/dsp_out_registered.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`include "../../vtr/dff/dff.sim.v"
212
`include "../dsp_combinational/dsp_combinational.sim.v"
313

tests/dsp/dsp_partial_registered/dsp_partial_registered.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`include "../../vtr/dff/dff.sim.v"
212
`include "../dsp_combinational/dsp_combinational.sim.v"
313

tests/internal_conn/child/child.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
(* blackbox *)
212
module CHILD(
313
input wire I,

tests/internal_conn/parent.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`include "./child/child.sim.v"
212

313
module PARENT (

tests/io/input/ipad.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
(* CLASS="input" *)
212
module IPAD(inpad);
313
output wire inpad;

tests/io/output/opad.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
(* CLASS="output" *)
212
module OPAD(outpad);
313
input wire outpad;

tests/logicbox/logicbox.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
(* whitebox *)
212
module LOGICBOX (I, O);
313
input wire I;

tests/modes/inv.sim.v

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* Copyright (C) 2020 The SymbiFlow Authors.
3+
*
4+
* Use of this source code is governed by a ISC-style
5+
* license that can be found in the LICENSE file or at
6+
* https://opensource.org/licenses/ISC
7+
*
8+
* SPDX-License-Identifier: ISC
9+
*/
10+
111
`include "./not/not.sim.v"
212

313
(* MODES="PASSTHROUGH;INVERT" *)

0 commit comments

Comments
 (0)