-
Notifications
You must be signed in to change notification settings - Fork 214
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
Matthias Koefferlein
committed
Jan 20, 2024
1 parent
f1f92e5
commit d8c00de
Showing
5 changed files
with
58 additions
and
1 deletion.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
source($drc_test_source, "TOP1") | ||
|
||
# This is just a smoke test without actual devices | ||
|
||
l1 = input(1, 0) | ||
l2 = input(2, 0) | ||
l3 = input(3, 0) | ||
|
||
connect(l1, l2) | ||
connect(l2, l3) | ||
|
||
writer = RBA::NetlistSpiceWriter::new | ||
|
||
netlist.write($drc_test_target, writer, "netlist") | ||
|
Binary file not shown.
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,5 @@ | ||
* netlist | ||
|
||
* cell TOP1 | ||
.SUBCKT TOP1 | ||
.ENDS TOP1 |