3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-24 01:25:33 +00:00

Updated abc

This commit is contained in:
Clifford Wolf 2013-11-21 22:39:10 +01:00
parent 40d9542647
commit 1c4a6411af
4 changed files with 39 additions and 11 deletions

View file

@ -1,4 +1,10 @@
library(demo) {
cell(BUF) {
area: 6;
pin(A) { direction: input; }
pin(Y) { direction: output;
function: "A"; }
}
cell(NOT) {
area: 3;
pin(A) { direction: input; }

View file

@ -1,4 +1,9 @@
.SUBCKT BUF A Y
X1 A B NOT
X2 B Y NOT
.ENDS NOT
.SUBCKT NOT A Y
M1 Y A Vdd Vdd cmosp L=1u W=10u
M2 Y A Vss Vss cmosn L=1u W=10u