-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding the two provided netlist files
- Loading branch information
1 parent
0672d7f
commit c81dbc3
Showing
2 changed files
with
18,191 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# 4 inputs | ||
# 1 outputs | ||
# 3 D-type flipflops | ||
# 2 inverters | ||
# 8 gates (1 ANDs + 1 NANDs + 2 ORs + 4 NORs) | ||
|
||
INPUT(G0) | ||
INPUT(G1) | ||
INPUT(G2) | ||
INPUT(G3) | ||
|
||
OUTPUT(G17) | ||
|
||
G5 = DFF(G10) | ||
G6 = DFF(G11) | ||
G7 = DFF(G13) | ||
|
||
G14 = NOT(G0) | ||
G17 = NOT(G11) | ||
|
||
G8 = AND(G14, G6) | ||
|
||
G15 = OR(G12, G8) | ||
G16 = OR(G3, G8) | ||
|
||
G9 = NAND(G16, G15) | ||
|
||
G10 = NOR(G14, G11) | ||
G11 = NOR(G5, G9) | ||
G12 = NOR(G1, G7) | ||
G13 = NOR(G2, G12) |
Oops, something went wrong.