Skip to content

Commit 00294b7

Browse files
committed
Apply review comments
Signed-off-by: Robert Winkler <rwinkler@antmicro.com>
1 parent 1543b55 commit 00294b7

File tree

2 files changed

+23
-6
lines changed

2 files changed

+23
-6
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
import warnings
12
import sphinxcontrib_hdl_diagrams
23

34
def setup(app):
4-
print("")
5-
print("WARNING:")
6-
print(" sphinxcontrib-verilog-diagram extension is depreciated!")
7-
print(" Please use sphinxcontrib-hdl-diagrams instead:")
8-
print(" https://github.com/SymbiFlow/sphinxcontrib-hdl-diagrams")
9-
print("")
5+
deprecation_msg = """
6+
sphinxcontrib-verilog-diagram extension is depreciated!
7+
Please use sphinxcontrib-hdl-diagrams instead:
8+
https://github.com/SymbiFlow/sphinxcontrib-hdl-diagrams"""
9+
warnings.warn(deprecation_msg, DeprecationWarning)
1010

1111
return sphinxcontrib_hdl_diagrams.setup(app)

docs/code/nmigen/counter.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# Copyright (C) 2020 The SymbiFlow Authors.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
# SPDX-License-Identifier: Apache-2.0
16+
17+
118
from nmigen import *
219
from nmigen.back import rtlil
320

0 commit comments

Comments
 (0)