Merge branch 'master' of github.com:lnis-uofu/OpenFPGA into xt_plocf
This commit is contained in:
commit
0af0ededd9
|
@ -26,6 +26,7 @@ error_codes = {"SUCCESS": 0, "ERROR": 1, "OPTION_ERROR": 2, "FILE_ERROR": 3}
|
||||||
#####################################################################
|
#####################################################################
|
||||||
logging.basicConfig(format="%(levelname)s: %(message)s", level=logging.INFO)
|
logging.basicConfig(format="%(levelname)s: %(message)s", level=logging.INFO)
|
||||||
|
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
# Upgrade an architecture XML file from version 1.1 syntax to version 1.2
|
# Upgrade an architecture XML file from version 1.1 syntax to version 1.2
|
||||||
# Change rules:
|
# Change rules:
|
||||||
|
|
|
@ -13,6 +13,7 @@ This example demonstrates the ``OpenFPGA_Arch`` class which parses the
|
||||||
Author: Ganesh Gore
|
Author: Ganesh Gore
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import math
|
import math
|
||||||
import svgwrite
|
import svgwrite
|
||||||
from svgwrite.container import Group
|
from svgwrite.container import Group
|
||||||
|
|
|
@ -674,9 +674,11 @@ def create_yosys_params():
|
||||||
ys_params["READ_HDL_FILE"] += " ".join(
|
ys_params["READ_HDL_FILE"] += " ".join(
|
||||||
[
|
[
|
||||||
"verific",
|
"verific",
|
||||||
|
(
|
||||||
"-L " + ys_params["VERIFIC_SEARCH_LIB"]
|
"-L " + ys_params["VERIFIC_SEARCH_LIB"]
|
||||||
if "VERIFIC_SEARCH_LIB" in ys_params
|
if "VERIFIC_SEARCH_LIB" in ys_params
|
||||||
else "",
|
else ""
|
||||||
|
),
|
||||||
standard,
|
standard,
|
||||||
" ".join([shlex.quote(src) for src in sources]),
|
" ".join([shlex.quote(src) for src in sources]),
|
||||||
"\n",
|
"\n",
|
||||||
|
|
|
@ -5,5 +5,5 @@ pyverilog
|
||||||
|
|
||||||
# Python linter and formatter
|
# Python linter and formatter
|
||||||
click==8.0.2 # Our version of black needs an older version of click (https://stackoverflow.com/questions/71673404/importerror-cannot-import-name-unicodefun-from-click)
|
click==8.0.2 # Our version of black needs an older version of click (https://stackoverflow.com/questions/71673404/importerror-cannot-import-name-unicodefun-from-click)
|
||||||
black==20.8b1
|
black==24.3.0
|
||||||
pylint==2.7.4
|
pylint==2.7.4
|
||||||
|
|
Loading…
Reference in New Issue