Sign in
foss-eda-tools
/
third_party
/
freepdk45
/
356e90646f5ef26ea09b1ed8ce4796871403a0c7
/
.
/
Back_End
/
virtuoso
/
NangateOpenCellLibrary
/
BUF_X16
/
functional
/
verilog.v
blob: 6315f060cb875cd5038c09ec943eb2a5a215dd05 [
file
] [
log
] [
blame
]
// Created by ihdl
module
BUF_X16
(
A
,
Z
);
input A
;
output Z
;
buf
(
Z
,
A
);
specify
(
A
=>
Z
)
=
(
0.1
,
0.1
);
endspecify
endmodule