-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eric
committed
May 15, 2021
1 parent
60a2f30
commit b743664
Showing
8 changed files
with
4,129 additions
and
467 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
# netlist | ||
Low level library-independent data structure for VLSI design | ||
|
||
|
||
## Purpose | ||
|
||
netlist is a common structure in VLSI design, especially in logical synthesis, P&R, formal verification, STA. | ||
|
||
This crate wants to abstract netlist to a generic style for more common use. | ||
|
||
|
||
|
||
## Feature | ||
**1. graph-like data structure** | ||
|
||
|
||
**2. verilog parser** | ||
The verilog parser in this crate is a minimal subset of verilog-2001, which can parse structural verilog syntax into netlist. | ||
|
||
**3. verilog saver** | ||
Save netlist as verilog. | ||
|
||
## Limitation | ||
* Not full verilog2001 featured verilog parser. Currently only support single module design and bus-based wire/port declare not supported | ||
* |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.