Skip to content

Commit

Permalink
Merge pull request #175 from byuccl/eblif
Browse files Browse the repository at this point in the history
SpyDrNet 1.11.1
  • Loading branch information
wirthlin authored Apr 22, 2022
2 parents dce74a3 + e8fddc4 commit e971f17
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
SpyDrNet 1.11.1
---------------
April 20, 2022

* Bug Fix. Now EBLIF support should actually be included.

SpyDrNet 1.11.0
---------------
April 9, 2022
Expand Down
Empty file.
Empty file.
6 changes: 4 additions & 2 deletions spydrnet/parsers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
import tempfile

"""
Init for Spydrnet. the funcitons below can be called directly
Init for Spydrnet. The functions below can be called directly
"""


def parse(filename):
"""
The parse function is able to parse either a EDIF (.edf) file or a Verilog file (.v)
The parse function is able to parse an EDIF (.edf) file, a Verilog file (.v), or an EBLIF file (.eblif).
This functions also supports the parsing of .zip files. Such as the ones in support_files folder
Expand All @@ -32,6 +32,8 @@ def parse(filename):
Or a zip file that contains the edif or verilog file
>>> netlist = sdn.parse('4bitadder.edf.zip')
The same applies for EBLIF files
"""
basename_less_final_extension = os.path.splitext(
os.path.basename(filename))[0]
Expand Down
Empty file.
Empty file.

0 comments on commit e971f17

Please sign in to comment.