File tree Expand file tree Collapse file tree 2 files changed +23
-6
lines changed
compat/sphinxcontrib_verilog_diagrams Expand file tree Collapse file tree 2 files changed +23
-6
lines changed Original file line number Diff line number Diff line change 1+ import warnings
12import sphinxcontrib_hdl_diagrams
23
34def 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 )
Original file line number Diff line number Diff line change 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+
118from nmigen import *
219from nmigen .back import rtlil
320
You can’t perform that action at this time.
0 commit comments