Skip to content

Commit

Permalink
Add buffer cell to scripts/yosys/synth_gates.lib
Browse files Browse the repository at this point in the history
Signed-off-by: Clifford Wolf <clifford@clifford.at>
  • Loading branch information
cliffordwolf committed Mar 2, 2019
1 parent ed1138d commit 243a09f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/yosys/synth_gates.lib
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ library(gates) {
pin(Y) { direction: output;
function: "A'"; }
}
cell(BUF) {
area: 4; // 2x 7404 hex inverter
pin(A) { direction: input; }
pin(Y) { direction: output;
function: "A"; }
}
cell(NAND) {
area: 3; // 7400 quad 2-input NAND gate
pin(A) { direction: input; }
Expand Down

0 comments on commit 243a09f

Please sign in to comment.