Skip to content

Commit dbd5d39

Browse files
authored
Adds missing copyright header (#7) (#8)
1 parent 12a0eff commit dbd5d39

File tree

4 files changed

+85
-0
lines changed

4 files changed

+85
-0
lines changed

.github/workflows/tests.yml

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# __ _
2+
# ________/ / ___ _(_)__ ___
3+
# / __/ __/ _ \/ _ `/ / _ \/ -_)
4+
# \__/\__/_//_/\_,_/_/_//_/\__/
5+
#
6+
# Copyright (C) Clément Chaine
7+
# This file is part of verilator-cmake <https://github.com/ecap5/verilator-cmake>
8+
#
9+
# verilator-cmake is free software: you can redistribute it and/or modify
10+
# it under the terms of the GNU General Public License as published by
11+
# the Free Software Foundation, either version 3 of the License, or
12+
# (at your option) any later version.
13+
#
14+
# verilator-cmake is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# GNU General Public License for more details.
18+
#
19+
# You should have received a copy of the GNU General Public License
20+
# along with verilator-cmake. If not, see <http://www.gnu.org/licenses/>.
21+
122
name: Tests
223

324
on:

cmake/verilator-config.cmake

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# __ _
2+
# ________/ / ___ _(_)__ ___
3+
# / __/ __/ _ \/ _ `/ / _ \/ -_)
4+
# \__/\__/_//_/\_,_/_/_//_/\__/
5+
#
6+
# Copyright (C) Clément Chaine
7+
# This file is part of verilator-cmake <https://github.com/ecap5/verilator-cmake>
8+
#
9+
# verilator-cmake is free software: you can redistribute it and/or modify
10+
# it under the terms of the GNU General Public License as published by
11+
# the Free Software Foundation, either version 3 of the License, or
12+
# (at your option) any later version.
13+
#
14+
# verilator-cmake is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# GNU General Public License for more details.
18+
#
19+
# You should have received a copy of the GNU General Public License
20+
# along with verilator-cmake. If not, see <http://www.gnu.org/licenses/>.
21+
122
######################################################################
223
#
324
# DESCRIPTION: CMake configuration file for Verilator

tests/CMakeLists.txt

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# __ _
2+
# ________/ / ___ _(_)__ ___
3+
# / __/ __/ _ \/ _ `/ / _ \/ -_)
4+
# \__/\__/_//_/\_,_/_/_//_/\__/
5+
#
6+
# Copyright (C) Clément Chaine
7+
# This file is part of verilator-cmake <https://github.com/ecap5/verilator-cmake>
8+
#
9+
# verilator-cmake is free software: you can redistribute it and/or modify
10+
# it under the terms of the GNU General Public License as published by
11+
# the Free Software Foundation, either version 3 of the License, or
12+
# (at your option) any later version.
13+
#
14+
# verilator-cmake is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# GNU General Public License for more details.
18+
#
19+
# You should have received a copy of the GNU General Public License
20+
# along with verilator-cmake. If not, see <http://www.gnu.org/licenses/>.
21+
122
cmake_minimum_required(VERSION 3.12)
223

324
project(verilator-cmake-test VERSION 1.0)

tests/src/top.sv

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
/* __ _
2+
* ________/ / ___ _(_)__ ___
3+
* / __/ __/ _ \/ _ `/ / _ \/ -_)
4+
* \__/\__/_//_/\_,_/_/_//_/\__/
5+
*
6+
* Copyright (C) Clément Chaine
7+
* This file is part of verilator-cmake <https://github.com/ecap5/verilator-cmake>
8+
*
9+
* verilator-cmake is free software: you can redistribute it and/or modify
10+
* it under the terms of the GNU General Public License as published by
11+
* the Free Software Foundation, either version 3 of the License, or
12+
* (at your option) any later version.
13+
*
14+
* verilator-cmake is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
* GNU General Public License for more details.
18+
*
19+
* You should have received a copy of the GNU General Public License
20+
* along with verilator-cmake. If not, see <http://www.gnu.org/licenses/>.
21+
*/
22+
123
module top (
224
input logic clk_i,
325
output logic clk_o

0 commit comments

Comments
 (0)