Sign in
foss-eda-tools
/
skywater-pdk
/
libs
/
sky130_osu_sc
/
74d7e28164afda23224f3042d883117b3fc6c464
/
.
/
verilog
/
s8_osu130_invxl.v
blob: 1a3084e5afcb00f601c3a29471332d49d57cdcdf [
file
] [
log
] [
blame
]
// type: INV
`timescale 1ns/10ps
`
celldefine
module
INVXL
(
Y
,
A
);
output Y
;
input A
;
// Function
not
(
Y
,
A
);
// Timing
specify
(
A
=>
Y
)
=
0
;
endspecify
endmodule
`endcelldefine